Apply formatting adjustments

This commit is contained in:
smoogipoo
2019-03-08 16:44:39 +09:00
parent 8c0e325d8b
commit a40ffcc692
6 changed files with 29 additions and 17 deletions

View File

@ -11,6 +11,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
public class ScoreTable : FillFlowContainer
{
private IEnumerable<APIScoreInfo> scores;
public IEnumerable<APIScoreInfo> Scores
{
set
@ -31,10 +32,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
foreach (var s in scores)
Add(new DrawableScore(index++, s, maxModsAmount));
}
get
{
return scores;
}
get => scores;
}
public ScoreTable()