Add osu.iOS project

This commit is contained in:
Shane Woolcock
2018-12-06 17:49:09 +10:30
parent 08c8d7adb3
commit 1be2fc59c4
33 changed files with 777 additions and 7 deletions

16
osu.iOS/Application.cs Normal file
View File

@ -0,0 +1,16 @@
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");
}
}
}