Program.cs 571 B

123456789101112131415161718192021222324
  1. using Foundation;
  2. using UIKit;
  3. namespace UseCustomVertex.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 : UIKit.UIApplicationDelegate
  14. {
  15. public override bool FinishedLaunching(UIApplication app, NSDictionary options)
  16. {
  17. var game = new UseCustomVertexGame();
  18. game.Run();
  19. return true;
  20. }
  21. }
  22. }