Program.cs 591 B

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