TouchyTickets/iOS/Program.cs

30 lines
738 B
C#
Raw Normal View History

using Foundation;
using MLEM.Misc;
2020-06-04 23:36:39 +02:00
using TouchyTickets;
using UIKit;
namespace iOS {
[Register("AppDelegate")]
internal class Program : UIApplicationDelegate {
private static GameImpl game;
private static void RunGame() {
TextInputWrapper.Current = new TextInputWrapper.Mobile();
2020-06-09 19:03:55 +02:00
game = new GameImpl(new IosAnalytics());
2020-06-04 23:36:39 +02:00
game.Run();
}
/// <summary>
/// The main entry point for the application.
/// </summary>
private static void Main(string[] args) {
UIApplication.Main(args, null, "AppDelegate");
}
public override void FinishedLaunching(UIApplication app) {
RunGame();
}
}
}