Ejemplo n.º 1
0
 public AmGameBase()
 {
     Instance = this;
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     IsMouseVisible        = true;
     ScreenManager         = new AmScreenManager();
 }
Ejemplo n.º 2
0
 public void Run()
 {
     gameBase      = new AmGameBase();
     gameBase.game = this;
     gameBase.Run();
 }