Program.cs 579 B

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