Exemplo n.º 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
Exemplo n.º 2
0
 public MenuState(Game1 game)
     : base(game)
 {
     this.game = game;
     PlayMusic(gameplayMusic);
 }
Exemplo n.º 3
0
 public IntroState(Game1 game)
     : base(game)
 {
 }
Exemplo n.º 4
0
 public GameState(Game1 game)
 {
     Game = game;
 }