2016-09-23 23:39:20 +08: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-07 11:49:53 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Framework.VisualTests
|
|
|
|
|
{
|
|
|
|
|
public static class Program
|
|
|
|
|
{
|
|
|
|
|
[STAThread]
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
2016-10-14 03:10:00 +08:00
|
|
|
|
BasicGameHost host = Host.GetSuitableHost(@"osu");
|
2016-10-06 16:48:38 +08:00
|
|
|
|
host.Add(new VisualTestGame());
|
2016-09-23 23:39:20 +08:00
|
|
|
|
host.Run();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|