Program.cs 693 B

123456789101112131415161718192021222324252627282930
  1. using Foundation;
  2. using UIKit;
  3. namespace ShaderTest.iOS
  4. {
  5. /// <summary>
  6. /// The main entry point for the iOS application.
  7. /// </summary>
  8. public class Application
  9. {
  10. /// <summary>
  11. /// Application entry point.
  12. /// </summary>
  13. static void Main(string[] args)
  14. {
  15. UIApplication.Main(args, null, typeof(AppDelegate));
  16. }
  17. }
  18. public class AppDelegate : UIApplicationDelegate
  19. {
  20. ShaderTestGame game;
  21. public override bool FinishedLaunching(UIApplication app, NSDictionary options)
  22. {
  23. game = new ShaderTestGame();
  24. game.Run();
  25. return true;
  26. }
  27. }
  28. }