ScoreInfo scoreInfo -> ScoreInfo score

This commit is contained in:
Dean Herbert
2018-11-30 15:18:52 +09:00
parent 271dcded3c
commit 831cd3ed59
25 changed files with 135 additions and 135 deletions

View File

@ -10,8 +10,8 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
{
public class DrawableTotalScore : DrawableProfileScore
{
public DrawableTotalScore(ScoreInfo scoreInfo)
: base(scoreInfo)
public DrawableTotalScore(ScoreInfo score)
: base(score)
{
}
@ -20,7 +20,7 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
{
RightFlowContainer.Add(new OsuSpriteText
{
Text = ScoreInfo.TotalScore.ToString("#,###"),
Text = Score.TotalScore.ToString("#,###"),
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
TextSize = 18,