Program.cs 692 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 PerPixelCollision.Windows
  9. {
  10. /// <summary>
  11. /// The main class.
  12. /// </summary>
  13. public static class Program
  14. {
  15. /// <summary>
  16. /// The main entry point for the application.
  17. /// </summary>
  18. [STAThread]
  19. static void Main()
  20. {
  21. using (var game = new PerPixelCollisionGame())
  22. game.Run();
  23. }
  24. }
  25. }