Use more sensible names for classes and methods

Adds xmldoc in places too.
This commit is contained in:
Dean Herbert
2017-12-11 12:31:35 +09:00
parent 507d0e3252
commit 98ce856de1
7 changed files with 19 additions and 13 deletions

View File

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