2019-03-04 04:24:19 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-06 08:59:01 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework;
|
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
|
|
|
{
|
|
|
|
|
public static class TournamentTestRunner
|
|
|
|
|
{
|
|
|
|
|
[STAThread]
|
|
|
|
|
public static int Main(string[] args)
|
|
|
|
|
{
|
2024-01-18 10:45:35 +00:00
|
|
|
|
using (DesktopGameHost host = Host.GetSuitableDesktopHost(@"osu-development"))
|
2018-11-06 08:59:01 +00:00
|
|
|
|
{
|
|
|
|
|
host.Run(new TournamentTestBrowser());
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|