Program.cs 587 B

12345678910111213141516171819202122232425
  1. using Foundation;
  2. using UIKit;
  3. namespace GemstoneHunter.iOS
  4. {
  5. [Register("AppDelegate")]
  6. public class AppDelegate : UIApplicationDelegate
  7. {
  8. public override UIWindow Window { get; set; }
  9. public override bool FinishedLaunching(UIApplication app, NSDictionary options)
  10. {
  11. var game = new GemstoneHunterGame();
  12. game.Run();
  13. return true;
  14. }
  15. }
  16. public class Application
  17. {
  18. static void Main(string[] args)
  19. {
  20. UIApplication.Main(args, null, typeof(AppDelegate));
  21. }
  22. }
  23. }