Castle.CastleGame.CastleGame C# (CSharp) Method

CastleGame() public method

public CastleGame ( ) : System
return System
        public CastleGame()
        {
            this.Window.Title = "Castle Adventure";
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            gameSpeed = new TimeSpan(0, 0, 0, 0, gameSpeedMs);
            lastGameUpdate = new TimeSpan(0, 0, 0, 0, 0);
        }