Exemplo n.º 1
0
 /// <summary>
 /// Creates new game
 /// </summary>
 public RPG()
 {
     GraphicsManager       = graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     ContentManager        = Content;
     CurrentGame           = this;
 }
Exemplo n.º 2
0
 internal static void RunGame()
 {
     game = new RPG();
     game.Run();
                 #if !__IOS__ && !__TVOS__
     game.Dispose();
                 #endif
 }