1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 21:02:55 +08:00

Comment out RankDisplay

Commented out as it may be revisited at a later time.
Also currently unused.
This commit is contained in:
sh0ckR6 2021-10-18 23:12:33 -04:00
parent 4fcdeffbd9
commit e7b280fc81
No known key found for this signature in database
GPG Key ID: 701938030071AF85

View File

@ -13,7 +13,9 @@ namespace osu.Game.Screens.Play.Break
public class BreakInfo : Container public class BreakInfo : Container
{ {
public PercentageBreakInfoLine AccuracyDisplay; public PercentageBreakInfoLine AccuracyDisplay;
public BreakInfoLine<int> RankDisplay;
// Currently unused but may be revisited in a future design update (see https://github.com/ppy/osu/discussions/15185)
// public BreakInfoLine<int> RankDisplay;
public BreakInfoLine<ScoreRank> GradeDisplay; public BreakInfoLine<ScoreRank> GradeDisplay;
public BreakInfo() public BreakInfo()
@ -41,7 +43,9 @@ namespace osu.Game.Screens.Play.Break
Children = new Drawable[] Children = new Drawable[]
{ {
AccuracyDisplay = new PercentageBreakInfoLine("Accuracy"), AccuracyDisplay = new PercentageBreakInfoLine("Accuracy"),
RankDisplay = new BreakInfoLine<int>("Rank"),
// See https://github.com/ppy/osu/discussions/15185
// RankDisplay = new BreakInfoLine<int>("Rank"),
GradeDisplay = new BreakInfoLine<ScoreRank>("Grade"), GradeDisplay = new BreakInfoLine<ScoreRank>("Grade"),
}, },
} }