AppDelegate.cs 430 B

12345678910111213141516171819
  1. using Foundation;
  2. using UIKit;
  3. using Microsoft.Xna.Framework;
  4. namespace CollisionSample
  5. {
  6. [Register("AppDelegate")]
  7. public class AppDelegate : UIApplicationDelegate
  8. {
  9. private Game _game;
  10. public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
  11. {
  12. _game = new CollisionGame();
  13. _game.Run();
  14. return true;
  15. }
  16. }
  17. }