Program.cs 607 B

12345678910111213141516171819202122232425
  1. using UIKit;
  2. namespace TiledSprites.iOS
  3. {
  4. public class Application
  5. {
  6. // This is the main entry point of the application.
  7. static void Main(string[] args)
  8. {
  9. UIApplication.Main(args, null, typeof(AppDelegate));
  10. }
  11. }
  12. public class AppDelegate : UIApplicationDelegate
  13. {
  14. public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
  15. {
  16. using (var game = new TiledSprites.TiledSpritesGame())
  17. {
  18. game.Run();
  19. }
  20. return true;
  21. }
  22. }
  23. }