1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:02:55 +08:00
This commit is contained in:
Albie Spriddell 2020-01-03 15:22:33 +00:00
parent 23ed64c5fd
commit d4888c39de

View File

@ -3,6 +3,7 @@
using osu.Game.Beatmaps; using osu.Game.Beatmaps;
using osu.Game.Graphics; using osu.Game.Graphics;
using osu.Game.Rulesets;
using osuTK.Graphics; using osuTK.Graphics;
namespace osu.Game.Users namespace osu.Game.Users
@ -44,15 +45,15 @@ namespace osu.Game.Users
{ {
public BeatmapInfo Beatmap { get; } public BeatmapInfo Beatmap { get; }
public Rulesets.RulesetInfo Ruleset { get; } public RulesetInfo Ruleset { get; }
public SoloGame(BeatmapInfo info, Rulesets.RulesetInfo ruleset) public SoloGame(BeatmapInfo info, RulesetInfo ruleset)
{ {
Beatmap = info; Beatmap = info;
Ruleset = ruleset; Ruleset = ruleset;
} }
public override string Status => Beatmap.Ruleset.CreateInstance().PlayingVerb; public override string Status => Ruleset.CreateInstance().PlayingVerb;
} }
public class Spectating : UserActivity public class Spectating : UserActivity