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

            song = game.Content.Load<Song>("yes");
            MediaPlayer.IsRepeating = true;
            MediaPlayer.Play(song);
        }
Example #3
0
 public TitleScreen(Game1 game)
 {
     this.game = game;
     texture = game.Content.Load<Texture2D>("TitleScreen");
     lastState = Keyboard.GetState();
 }