1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +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.Graphics;
using osu.Game.Rulesets;
using osuTK.Graphics;
namespace osu.Game.Users
@ -44,15 +45,15 @@ namespace osu.Game.Users
{
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;
Ruleset = ruleset;
}
public override string Status => Beatmap.Ruleset.CreateInstance().PlayingVerb;
public override string Status => Ruleset.CreateInstance().PlayingVerb;
}
public class Spectating : UserActivity