mirror of
https://github.com/osukey/osukey.git
synced 2025-04-29 02:37:25 +09:00
17 lines
399 B
C#
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");
|
|
}
|
|
}
|
|
}
|
|
|