1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00
osu-lazer/osu.iOS/Application.cs

17 lines
399 B
C#
Raw Normal View History

2018-12-06 15:19:09 +08:00
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");
}
}
}