Add basic visual tests

This commit is contained in:
Shane Woolcock
2018-12-29 18:47:35 +10:30
parent 436fbc7ffe
commit ff4b41b35f
27 changed files with 620 additions and 263 deletions

View File

@ -0,0 +1,14 @@
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();
}
}