Program.cs 765 B

1234567891011121314151617181920212223242526272829303132
  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 Flocking
  13. {
  14. #if WINDOWS || XBOX
  15. static class Program
  16. {
  17. /// <summary>
  18. /// The main entry point for the application.
  19. /// </summary>
  20. static void Main(string[] args)
  21. {
  22. using (FlockingSample game = new FlockingSample())
  23. {
  24. game.Run();
  25. }
  26. }
  27. }
  28. #endif
  29. }