Program.cs 412 B

1234567891011121314151617181920
  1. using System;
  2. namespace InputReporter
  3. {
  4. /// <summary>
  5. /// The main class for Windows platform.
  6. /// </summary>
  7. public static class Program
  8. {
  9. /// <summary>
  10. /// The main entry point for the application.
  11. /// </summary>
  12. [STAThread]
  13. static void Main()
  14. {
  15. using var game = new InputReporterGame();
  16. game.Run();
  17. }
  18. }
  19. }