| 12345678910111213141516171819202122232425 |
- using Foundation;
- using UIKit;
- namespace GemstoneHunter.iOS
- {
- [Register("AppDelegate")]
- public class AppDelegate : UIApplicationDelegate
- {
- public override UIWindow Window { get; set; }
- public override bool FinishedLaunching(UIApplication app, NSDictionary options)
- {
- var game = new GemstoneHunterGame();
- game.Run();
- return true;
- }
- }
- public class Application
- {
- static void Main(string[] args)
- {
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
- }
- }
|