Program.cs 544 B

123456789101112131415161718192021222324252627
  1. #region Using Statements
  2. using System;
  3. using MonoTouch.Foundation;
  4. using MonoTouch.UIKit;
  5. using Microsoft.Xna;
  6. using Microsoft.Xna.Framework.Media;
  7. #endregion
  8. namespace MemoryMadness
  9. {
  10. [Register ("AppDelegate")]
  11. class Program : UIApplicationDelegate
  12. {
  13. public override void FinishedLaunching (UIApplication app)
  14. {
  15. using (MemoryMadnessGame game = new MemoryMadnessGame())
  16. {
  17. game.Run();
  18. }
  19. }
  20. static void Main (string [] args)
  21. {
  22. UIApplication.Main (args,null,"AppDelegate");
  23. }
  24. }
  25. }