// Copyright (c) 2007-2016 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using System; using osu.Framework.Desktop; using osu.Framework.Desktop.Platform; using osu.Framework.Platform; namespace osu.Desktop.VisualTests { public static class Program { [STAThread] public static void Main(string[] args) { BasicGameHost host = Host.GetSuitableHost(@"osu-visual-tests"); host.Add(new VisualTestGame()); host.Run(); } } }