Program.cs 509 B

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