split multiplayer and playlist activity

This commit is contained in:
Nathan Alo
2021-08-22 09:54:07 +08:00
parent eaca331170
commit 2877b43824
4 changed files with 14 additions and 3 deletions

View File

@ -50,6 +50,14 @@ namespace osu.Game.Users
public override string Status => $@"{base.Status} with others";
}
public class InPlaylistGame : InGame
{
public InPlaylistGame(BeatmapInfo beatmap, RulesetInfo ruleset)
: base(beatmap, ruleset)
{
}
}
public class InSoloGame : InGame
{
public InSoloGame(BeatmapInfo info, RulesetInfo ruleset)