Implement DrawableMostPlayedBeatmap

This commit is contained in:
EVAST9919
2019-05-29 19:51:59 +03:00
parent 8bcb4485ed
commit 52fad723a2
4 changed files with 192 additions and 79 deletions

View File

@ -42,7 +42,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
foreach (var beatmap in beatmaps)
{
ItemsContainer.Add(new DrawableMostPlayedRow(beatmap.GetBeatmapInfo(Rulesets), beatmap.PlayCount));
ItemsContainer.Add(new DrawableMostPlayedBeatmap(beatmap.GetBeatmapInfo(Rulesets), beatmap.PlayCount));
}
});