mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Score -> ScoreInfo
This commit is contained in:
@ -10,8 +10,8 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
|
||||
{
|
||||
public class DrawableTotalScore : DrawableProfileScore
|
||||
{
|
||||
public DrawableTotalScore(Score score)
|
||||
: base(score)
|
||||
public DrawableTotalScore(ScoreInfo scoreInfo)
|
||||
: base(scoreInfo)
|
||||
{
|
||||
}
|
||||
|
||||
@ -20,7 +20,7 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
|
||||
{
|
||||
RightFlowContainer.Add(new OsuSpriteText
|
||||
{
|
||||
Text = Score.TotalScore.ToString("#,###"),
|
||||
Text = ScoreInfo.TotalScore.ToString("#,###"),
|
||||
Anchor = Anchor.TopRight,
|
||||
Origin = Anchor.TopRight,
|
||||
TextSize = 18,
|
||||
|
Reference in New Issue
Block a user