2020-08-01 12:04:39 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
|
2020-08-03 02:47:09 +08:00
|
|
|
|
namespace osu.Game.Overlays.Dashboard.Home
|
2020-08-01 12:04:39 +08:00
|
|
|
|
{
|
2020-08-03 02:33:14 +08:00
|
|
|
|
public class DrawablePopularBeatmapList : DrawableBeatmapList
|
2020-08-01 12:04:39 +08:00
|
|
|
|
{
|
2020-08-03 02:33:14 +08:00
|
|
|
|
public DrawablePopularBeatmapList(List<BeatmapSetInfo> beatmaps)
|
2020-08-01 12:04:39 +08:00
|
|
|
|
: base(beatmaps)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override DashboardBeatmapPanel CreateBeatmapPanel(BeatmapSetInfo setInfo) => new DashboardPopularBeatmapPanel(setInfo);
|
|
|
|
|
|
2020-08-03 02:35:24 +08:00
|
|
|
|
protected override string Title => "Popular Beatmaps";
|
2020-08-01 12:04:39 +08:00
|
|
|
|
}
|
|
|
|
|
}
|