1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 10:47:45 +08:00

16 lines
434 B
C#
Raw Normal View History

2019-01-25 18:55:05 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-12-29 20:05:37 +10:30
using Foundation;
using osu.Framework.iOS;
using osu.Game.Tests;
namespace osu.Game.Rulesets.Osu.Tests.iOS
{
[Register("AppDelegate")]
public class AppDelegate : GameAppDelegate
{
protected override Framework.Game CreateGame() => new OsuTestBrowser();
}
}