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

Move protected below public

This commit is contained in:
Dean Herbert 2019-07-11 10:38:32 +09:00
parent 953d32366c
commit a49bde7ed3

View File

@ -32,19 +32,6 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
private GetScoresRequest getScoresRequest;
private APILegacyScores scores;
protected APILegacyScores Scores
{
get => scores;
set
{
scores = value;
updateDisplay();
}
}
private BeatmapInfo beatmap;
public BeatmapInfo Beatmap
@ -61,6 +48,19 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
}
}
private APILegacyScores scores;
protected APILegacyScores Scores
{
get => scores;
set
{
scores = value;
updateDisplay();
}
}
public ScoresContainer()
{
RelativeSizeAxes = Axes.X;