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 Foundation;
5using osu.Framework;
6using osu.Framework.iOS;
7
8namespace SampleGame.iOS
9{
10 [Register("AppDelegate")]
11 public class AppDelegate : GameAppDelegate
12 {
13 protected override Game CreateGame() => new SampleGameGame();
14 }
15}