osukey/osu.iOS/Application.cs
2018-12-06 17:49:09 +10:30

17 lines
399 B
C#

using UIKit;
namespace osu.iOS
{
public class Application
{
// This is the main entry point of the application.
public 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");
}
}
}