mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 16:12:54 +08:00
apply suggestions
This commit is contained in:
parent
c56b34d2da
commit
eaca331170
@ -224,7 +224,7 @@ namespace osu.Game.Rulesets
|
|||||||
public abstract string ShortName { get; }
|
public abstract string ShortName { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The playing verb to be shown in the <see cref="UserActivity.InGame.Status"/>.
|
/// The playing verb to be shown in the <see cref="UserActivity.InGame"/> activities.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual string PlayingVerb => "Playing";
|
public virtual string PlayingVerb => "Playing";
|
||||||
|
|
||||||
|
@ -25,13 +25,13 @@ namespace osu.Game.Users
|
|||||||
public override string Status => "Choosing a beatmap";
|
public override string Status => "Choosing a beatmap";
|
||||||
}
|
}
|
||||||
|
|
||||||
public class InGame : UserActivity
|
public abstract class InGame : UserActivity
|
||||||
{
|
{
|
||||||
public BeatmapInfo Beatmap { get; }
|
public BeatmapInfo Beatmap { get; }
|
||||||
|
|
||||||
public RulesetInfo Ruleset { get; }
|
public RulesetInfo Ruleset { get; }
|
||||||
|
|
||||||
public InGame(BeatmapInfo info, RulesetInfo ruleset)
|
protected InGame(BeatmapInfo info, RulesetInfo ruleset)
|
||||||
{
|
{
|
||||||
Beatmap = info;
|
Beatmap = info;
|
||||||
Ruleset = ruleset;
|
Ruleset = ruleset;
|
||||||
|
Loading…
Reference in New Issue
Block a user