osukey/osu.iOS/AppDelegate.cs
2018-12-06 21:30:23 +10:30

16 lines
469 B
C#

using Foundation;
using osu.Framework.iOS;
using osu.Game;
namespace osu.iOS
{
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and optionally responding) to application events from iOS.
[Register("AppDelegate")]
public class AppDelegate : GameAppDelegate
{
protected override Framework.Game CreateGame() => new OsuGame();
}
}