1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Bring up-to-date with latest framework.

This commit is contained in:
Dean Herbert 2016-10-06 17:48:38 +09:00
parent 9ed4da556e
commit e5dc8bad2f
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace osu.Framework.VisualTests
public static void Main(string[] args)
{
BasicGameHost host = Host.GetSuitableHost();
host.Load(new VisualTestGame());
host.Add(new VisualTestGame());
host.Run();
}
}

View File

@ -14,7 +14,7 @@ namespace osu.Desktop
public static void Main()
{
BasicGameHost host = Host.GetSuitableHost();
host.Load(new OsuGame());
host.Add(new OsuGame());
host.Run();
}
}