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 GetScoresRequest getScoresRequest;
private APILegacyScores scores;
protected APILegacyScores Scores
{
get => scores;
set
{
scores = value;
updateDisplay();
}
}
private BeatmapInfo beatmap; private BeatmapInfo beatmap;
public 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() public ScoresContainer()
{ {
RelativeSizeAxes = Axes.X; RelativeSizeAxes = Axes.X;