1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 02:23:10 +08:00

Actually fix issue with naming of LeaderboardScoreV2.cs class

This commit is contained in:
mk56-spn 2023-01-16 22:51:46 +01:00
parent 7c550e5340
commit d73ce1ddb2
2 changed files with 3 additions and 3 deletions

View File

@ -65,8 +65,8 @@ namespace osu.Game.Tests.Visual.SongSelect
AutoSizeAxes = Axes.Y,
Children = new Drawable[]
{
new LeaderBoardScoreV2(scores[0], 1),
new LeaderBoardScoreV2(scores[1], null, true)
new LeaderboardScoreV2(scores[0], 1),
new LeaderboardScoreV2(scores[1], null, true)
}
};
}

View File

@ -86,7 +86,7 @@ namespace osu.Game.Online.Leaderboards
public ITooltip<ScoreInfo> GetCustomTooltip() => new LeaderboardScoreTooltip();
public virtual ScoreInfo TooltipContent => score;
public LeaderBoardScoreV2(ScoreInfo score, int? rank, bool isPersonalBest = false)
public LeaderboardScoreV2(ScoreInfo score, int? rank, bool isPersonalBest = false)
{
this.score = score;
this.rank = rank;