Program.iOS.cs 648 B

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