| 12345678910111213141516171819202122232425 |
- using Foundation;
- using UIKit;
- namespace Storage.Platforms.iOS
- {
- [Register("AppDelegate")]
- public class AppDelegate : UIApplicationDelegate
- {
- private StorageGame game;
- public override void FinishedLaunching(UIApplication app)
- {
- game = new StorageGame();
- game.Run();
- }
- }
- public class Program
- {
- static void Main(string[] args)
- {
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
- }
- }
|