Program.cs 719 B

1234567891011121314151617181920212223242526272829
  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 Microsoft.Xna.Samples.MultiTouch
  9. {
  10. [Register("AppDelegate")]
  11. class Program : UIApplicationDelegate
  12. {
  13. public override void FinishedLaunching(UIApplication app)
  14. {
  15. // Fun begins..
  16. Game1 game = new Game1();
  17. game.Run();
  18. }
  19. /// <summary>
  20. /// The main entry point for the application.
  21. /// </summary>
  22. static void Main(string[] args)
  23. {
  24. UIApplication.Main(args, null, "AppDelegate");
  25. }
  26. }
  27. }