Program.cs 231 B

1234567891011121314
  1. using System;
  2. namespace GooCursor.Platforms.Desktop
  3. {
  4. static class Program
  5. {
  6. [STAThread]
  7. static void Main()
  8. {
  9. var game = new GooCursor.Game1();
  10. game.Run();
  11. }
  12. }
  13. }