Program.cs 442 B

123456789101112131415161718192021222324
  1. using MonoTouch.Foundation;
  2. using MonoTouch.UIKit;
  3. using Microsoft.Xna;
  4. namespace RectangleCollision
  5. {
  6. [Register ("AppDelegate")]
  7. class Program : UIApplicationDelegate
  8. {
  9. public override void FinishedLaunching (UIApplication app)
  10. {
  11. // Fun begins..
  12. RectangleCollisionGame game = new RectangleCollisionGame();
  13. game.Run();
  14. }
  15. static void Main (string [] args)
  16. {
  17. UIApplication.Main (args,null,"AppDelegate");
  18. }
  19. }
  20. }