Program.cs 448 B

12345678910111213141516171819202122
  1. using Foundation;
  2. using UIKit;
  3. namespace MonoGame.Samples.Input.iOS
  4. {
  5. [Register("AppDelegate")]
  6. class Program : UIApplicationDelegate
  7. {
  8. private Game1 game;
  9. public override void FinishedLaunching(UIApplication app)
  10. {
  11. game = new Game1();
  12. game.Run();
  13. }
  14. static void Main(string[] args)
  15. {
  16. UIApplication.Main(args, null, "AppDelegate");
  17. }
  18. }
  19. }