Rename things around to make a bit more sense.

This commit is contained in:
smoogipooo
2017-03-24 09:50:18 +09:00
parent 2074812f46
commit 4e31e3b443
8 changed files with 38 additions and 38 deletions

View File

@ -35,7 +35,7 @@ namespace osu.Game.Modes.Judgements
AutoSizeAxes = Axes.Both;
string scoreString = judgement.Result == HitResult.Hit ? judgement.ScoreString : judgement.Result.GetDescription();
string resultString = judgement.Result == HitResult.Hit ? judgement.ResultString : judgement.Result.GetDescription();
Children = new[]
{
@ -43,7 +43,7 @@ namespace osu.Game.Modes.Judgements
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Text = scoreString.ToUpper(),
Text = resultString.ToUpper(),
Font = @"Venera",
TextSize = 16
}

View File

@ -23,13 +23,13 @@ namespace osu.Game.Modes.Judgements
public ulong? ComboAtHit;
/// <summary>
/// The string representation for the score achieved.
/// The string representation for the result achieved.
/// </summary>
public abstract string ScoreString { get; }
public abstract string ResultString { get; }
/// <summary>
/// The string representation for the max score achievable.
/// The string representation for the max result achievable.
/// </summary>
public abstract string MaxScoreString { get; }
public abstract string MaxResultString { get; }
}
}