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