2
0

Main.cs 542 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MonoTouch.Foundation;
  5. using MonoTouch.UIKit;
  6. namespace MonoGame.Samples.VideoPlayer
  7. {
  8. [Register("AppDelegate")]
  9. class Program : UIApplicationDelegate
  10. {
  11. private Game1 game;
  12. public override void FinishedLaunching (UIApplication app)
  13. {
  14. game = new Game1 ();
  15. game.Run ();
  16. }
  17. /// <summary>
  18. /// The main entry point for the application.
  19. /// </summary>
  20. static void Main (string[] args)
  21. {
  22. UIApplication.Main (args, null, "AppDelegate");
  23. }
  24. }
  25. }