2
0

Program.cs 317 B

1234567891011121314151617
  1. using System;
  2. namespace Waypoint.Windows
  3. {
  4. /// <summary>
  5. /// The main class for Windows platform.
  6. /// </summary>
  7. public static class Program
  8. {
  9. [STAThread]
  10. static void Main()
  11. {
  12. using (var game = new WaypointGame())
  13. game.Run();
  14. }
  15. }
  16. }