A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using UIKit;
5
6namespace SampleGame.iOS
7{
8 public static class Application
9 {
10 // This is the main entry point of the application.
11 public static void Main(string[] args)
12 {
13 // if you want to use a different Application Delegate class from "AppDelegate"
14 // you can specify it here.
15 UIApplication.Main(args, "GameUIApplication", "AppDelegate");
16 }
17 }
18}