Program.cs 756 B

1234567891011121314151617181920212223242526
  1. //-----------------------------------------------------------------------------
  2. // Program.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Windows.Forms;
  10. namespace Xna.Samples
  11. {
  12. static class Program
  13. {
  14. /// <summary>
  15. /// The main entry point for the application.
  16. /// </summary>
  17. [STAThread]
  18. static void Main()
  19. {
  20. Application.EnableVisualStyles();
  21. Application.SetCompatibleTextRenderingDefault(false);
  22. Application.Run(new CurveControlUsageSample());
  23. }
  24. }
  25. }