UpdateLocalModState() public method

public UpdateLocalModState ( ISupportModding game ) : void
game ISupportModding
return void
示例#1
0
        void UpdateModState()
        {
            var package = Package;

            if (Mod is LocalMod)
            {
                _modState.UpdateLocalModState(Game);
            }
            else if (package != null)
            {
                _modState.UpdateSynqState(Game, package);
            }
            else
            {
                _modState.UpdateSixSyncState(Game);
            }
        }