1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-07 11:32:54 +08:00
This commit is contained in:
Drew DeVault 2016-10-10 09:20:06 -04:00
parent 7df8cbb439
commit b84bc05f81
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using osu.Framework.OS; using osu.Framework.Platform;
namespace osu.Game.Beatmaps.IO namespace osu.Game.Beatmaps.IO
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using osu.Framework.OS; using osu.Framework.Platform;
using osu.Game.Beatmaps; using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Formats; using osu.Game.Beatmaps.Formats;
using osu.Game.Beatmaps.IO; using osu.Game.Beatmaps.IO;