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:
parent
7c550e5340
commit
d73ce1ddb2
@ -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)
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
Loading…
Reference in New Issue
Block a user