Add ruleset visual tests

This commit is contained in:
Shane Woolcock
2018-12-29 20:05:37 +10:30
parent ff4b41b35f
commit a83bee9461
34 changed files with 1161 additions and 45 deletions

View File

@ -0,0 +1,15 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using UIKit;
namespace osu.Game.Rulesets.Osu.Tests.iOS
{
public class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, "AppDelegate");
}
}
}