Program.cs 530 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace OpenVIII.OpenGL
  3. {
  4. /// <summary>
  5. /// The main class.
  6. /// </summary>
  7. public static class Program
  8. {
  9. #region Methods
  10. /// <summary>
  11. /// The main entry point for the application.
  12. /// </summary>
  13. [STAThread]
  14. private static void Main(string[] args)
  15. {
  16. using (var game = new Game1())
  17. {
  18. game.Arguments = args;
  19. game.Run();
  20. }
  21. }
  22. #endregion Methods
  23. }
  24. }