Program.cs 607 B

12345678910111213141516171819202122232425
  1. //-----------------------------------------------------------------------------
  2. // Program.cs
  3. //
  4. //-----------------------------------------------------------------------------
  5. using System;
  6. namespace NetworkPrediction
  7. {
  8. /// <summary>
  9. /// The main class for the Windows version.
  10. /// </summary>
  11. public static class Program
  12. {
  13. /// <summary>
  14. /// The main entry point for the application.
  15. /// </summary>
  16. [STAThread]
  17. static void Main()
  18. {
  19. using (var game = new NetworkPredictionGame())
  20. game.Run();
  21. }
  22. }
  23. }