2016-09-24 00:39:20 +09:00
|
|
|
|
// Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Desktop;
|
2016-10-24 14:57:00 -04:00
|
|
|
|
using osu.Framework.Desktop.Platform;
|
2016-10-07 12:49:53 +09:00
|
|
|
|
using osu.Framework.Platform;
|
2016-09-24 00:39:20 +09:00
|
|
|
|
|
2016-10-26 17:26:26 +09:00
|
|
|
|
namespace osu.Desktop.VisualTests
|
2016-09-24 00:39:20 +09:00
|
|
|
|
{
|
|
|
|
|
public static class Program
|
|
|
|
|
{
|
|
|
|
|
[STAThread]
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
2016-10-26 10:52:04 -04:00
|
|
|
|
BasicGameHost host = Host.GetSuitableHost(@"osu-visual-tests");
|
2016-10-06 17:48:38 +09:00
|
|
|
|
host.Add(new VisualTestGame());
|
2016-09-24 00:39:20 +09:00
|
|
|
|
host.Run();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|