2
0

Program.cs 458 B

12345678910111213141516171819202122232425
  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. using (RectangleCollisionGame game = new RectangleCollisionGame()) {
  13. game.Run ();
  14. }
  15. }
  16. static void Main (string [] args)
  17. {
  18. UIApplication.Main (args,null,"AppDelegate");
  19. }
  20. }
  21. }