AppDelegate.cs 422 B

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