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:
parent
953d32366c
commit
a49bde7ed3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user