AppDelegate.cs 440 B

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