Alexandria.GameInstance.GameInstance C# (CSharp) Method

GameInstance() public method

Initialise the instance.
public GameInstance ( Game game, string path ) : System
game Game
path string
return 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