mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-13 11:20:31 +00:00
17 lines
306 B
C#
17 lines
306 B
C#
using UIKit;
|
|
|
|
namespace TemplateGame.iOS
|
|
{
|
|
/// <summary>
|
|
/// </summary>
|
|
public static class Program
|
|
{
|
|
/// <summary>
|
|
/// </summary>
|
|
public static void Main(string[] args)
|
|
{
|
|
UIApplication.Main(args, null, typeof(AppDelegate));
|
|
}
|
|
}
|
|
}
|