Program.cs 334 B

1234567891011121314151617
  1. using System;
  2. using Microsoft.Xna.Framework;
  3. namespace InputReporter
  4. {
  5. /// <summary>
  6. /// The main class for iOS platform.
  7. /// </summary>
  8. public static class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. using var game = new InputReporterGame();
  13. game.Run();
  14. }
  15. }
  16. }