Rename DrawableScore

This commit is contained in:
smoogipoo
2019-03-20 17:15:38 +09:00
parent 41d25c7d19
commit f7016e1d2c
3 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
int index = 0;
foreach (var s in value)
scoresFlow.Add(new DrawableScore(index++, s, maxModsAmount));
scoresFlow.Add(new ScoreTableScore(index++, s, maxModsAmount));
}
}
}