withSIX.Mini.Core.Games.Collection.UpdateState C# (CSharp) Method

UpdateState() public method

public UpdateState ( bool force = true ) : void
force bool
return void
        public override void UpdateState(bool force = true) {
            if (!IsInstalled()) {
                if (ContentIsInstalled()) {
                    Installed(Version, true);
                    base.UpdateState(true);
                    return;
                }
            }
            base.UpdateState(force);
        }