Program.cs 644 B

123456789101112131415161718192021222324252627
  1. //-----------------------------------------------------------------------------
  2. // Program.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. using System;
  8. namespace XnaGraphicsDemo
  9. {
  10. static class Program
  11. {
  12. /// <summary>
  13. /// The main entry point for the application.
  14. /// </summary>
  15. [STAThread]
  16. static void Main(string[] args)
  17. {
  18. using (var game = new DemoGame())
  19. {
  20. game.Run();
  21. }
  22. }
  23. }
  24. }