1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 18:42:54 +08:00
osu-lazer/osu.Desktop/Program.cs

22 lines
548 B
C#
Raw Normal View History

2016-08-26 11:28:23 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
2016-08-26 16:27:49 +08:00
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-08-26 11:28:23 +08:00
using System;
using osu.Framework.Desktop;
2016-10-07 11:49:53 +08:00
using osu.Framework.Platform;
2016-08-26 11:28:23 +08:00
using osu.Game;
namespace osu.Desktop
{
public static class Program
{
[STAThread]
2016-10-04 23:31:10 +08:00
public static void Main(string[] args)
2016-08-26 11:28:23 +08:00
{
BasicGameHost host = Host.GetSuitableHost(@"osu");
host.Add(new OsuGame(args));
2016-08-26 11:28:23 +08:00
host.Run();
}
}
}