osukey/osu.Game.Tests.iOS/AppDelegate.cs
2018-12-29 18:47:35 +10:30

15 lines
471 B
C#

using Foundation;
using osu.Framework.iOS;
namespace osu.Game.Tests.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 OsuTestBrowser();
}
}