AppDelegate.cs 365 B

12345678910111213141516
  1. using Foundation;
  2. using UIKit;
  3. namespace PerPixelCollision.iOS
  4. {
  5. [Register("AppDelegate")]
  6. public class AppDelegate : UIApplicationDelegate
  7. {
  8. private PerPixelCollisionGame game;
  9. public override void FinishedLaunching(UIApplication app)
  10. {
  11. game = new PerPixelCollisionGame();
  12. game.Run();
  13. }
  14. }
  15. }