Alexandria.GameInstance.GameInstance C# (CSharp) 메소드

GameInstance() 공개 메소드

Initialise the instance.
public GameInstance ( Game game, string path ) : System
game Game
path string
리턴 System
        public GameInstance(Game game, string path)
        {
            if (game == null)
                throw new ArgumentNullException("game");
            if (path == null)
                throw new ArgumentNullException("path");

            Game = game;
            Path = path;
            GameGuid = game.Guid;
            GameName = game.DisplayName;
        }

Same methods

GameInstance::GameInstance ( string source ) : System