withSIX.Mini.Core.Games.Collection.UpdateState C# (CSharp) Méthode

UpdateState() public méthode

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