Program.cs 489 B

1234567891011121314151617181920212223
  1. using Foundation;
  2. using UIKit;
  3. using SpriteFontSample.Core;
  4. namespace SpriteFontSample.iOS
  5. {
  6. [Register("AppDelegate")]
  7. class Program : UIApplicationDelegate
  8. {
  9. private SpriteFontGame game;
  10. public override void FinishedLaunching(UIApplication app)
  11. {
  12. game = new SpriteFontGame();
  13. game.Run();
  14. }
  15. static void Main(string[] args)
  16. {
  17. UIApplication.Main(args, null, "AppDelegate");
  18. }
  19. }
  20. }