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,16 @@
using UIKit;
namespace osu.Game.Tests.iOS
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
}
}
}