Program.cs 408 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace Microsoft.Xna.Samples.Sound
  5. {
  6. static class Program
  7. {
  8. private static Game1 game;
  9. /// <summary>
  10. /// The main entry point for the application.
  11. /// </summary>
  12. [STAThread]
  13. static void Main()
  14. {
  15. game = new Game1();
  16. game.Run();
  17. }
  18. }
  19. }