mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 11:27:24 +08:00
22 lines
531 B
C#
22 lines
531 B
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Framework.Desktop;
|
|
using osu.Framework.Platform;
|
|
using osu.Game;
|
|
|
|
namespace osu.Desktop
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main()
|
|
{
|
|
BasicGameHost host = Host.GetSuitableHost(@"osu");
|
|
host.Add(new OsuGame());
|
|
host.Run();
|
|
}
|
|
}
|
|
}
|