Program.cs 723 B

1234567891011121314151617181920212223242526272829
  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. #region Using Statements
  10. using System;
  11. #endregion
  12. namespace TransformedCollision
  13. {
  14. static class Program
  15. {
  16. /// <summary>
  17. /// The main entry point for the application.
  18. /// </summary>
  19. static void Main()
  20. {
  21. using (TransformedCollisionGame game = new TransformedCollisionGame())
  22. {
  23. game.Run();
  24. }
  25. }
  26. }
  27. }