Program.cs 692 B

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