osu/osu.Game.Tests.iOS/AppDelegate.cs

15 lines
471 B
C#
Raw Normal View History

2018-12-29 08:17:35 +00:00
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();
}
}