osukey/osu.Game.Tests.iOS/Application.cs
2018-12-29 18:47:35 +10:30

17 lines
403 B
C#

using UIKit;
namespace osu.Game.Tests.iOS
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
}
}
}