Program.cs 451 B

12345678910111213141516171819202122
  1. using System;
  2. namespace XMLContentLoadingSample.WindowsDX
  3. {
  4. #if WINDOWS || LINUX
  5. /// <summary>
  6. /// The main class.
  7. /// </summary>
  8. public static class Program
  9. {
  10. /// <summary>
  11. /// The main entry point for the application.
  12. /// </summary>
  13. [STAThread]
  14. static void Main()
  15. {
  16. using (var game = new Particle3DSampleGame())
  17. game.Run();
  18. }
  19. }
  20. #endif
  21. }