mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 18:47:27 +08:00
7bdb2fcfc7
Comes with one complimentary test.
21 lines
549 B
C#
21 lines
549 B
C#
// 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;
|
|
using osu.Framework.OS;
|
|
|
|
namespace osu.Framework.VisualTests
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
BasicGameHost host = Host.GetSuitableHost();
|
|
host.Load(new VisualTestGame());
|
|
host.Run();
|
|
}
|
|
}
|
|
}
|