Exemple #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (EpicRPG game = new EpicRPG())
     {
         game.Run();
     }
 }
Exemple #2
0
        public EpicRPG()
        {
            instance = this;

            this.Window.Title = "EPIC RPG";
            this.Window.AllowUserResizing = true;

            OutputManager.getInstance().initializeGraphics(this);
            Content.RootDirectory = "Content";
            this.gameState = State.GameState.INITIALIZING;
        }