Program.cs 780 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. #region Using Statements
  10. using System;
  11. using System.Windows.Forms;
  12. #endregion
  13. namespace WinFormsContentLoading
  14. {
  15. /// <summary>
  16. /// The main entry point for the application.
  17. /// </summary>
  18. static class Program
  19. {
  20. [STAThread]
  21. static void Main()
  22. {
  23. Application.EnableVisualStyles();
  24. Application.SetCompatibleTextRenderingDefault(false);
  25. Application.Run(new MainForm());
  26. }
  27. }
  28. }