Implement beatmap sending/receiving over IPC

This commit is contained in:
Drew DeVault
2016-10-10 16:56:01 -04:00
committed by Dean Herbert
parent c7d12bc072
commit 94f2898f52
5 changed files with 37 additions and 2 deletions

View File

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