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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-08-01 12:04:39 +08:00
|
|
|
|
using System.Collections.Generic;
|
2022-01-28 12:53:48 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-11-01 15:02:00 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2022-01-28 12:53:48 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2020-08-01 12:04:39 +08:00
|
|
|
|
|
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 partial class DrawablePopularBeatmapList : DrawableBeatmapList
|
2020-08-01 12:04:39 +08:00
|
|
|
|
{
|
2021-11-01 15:02:00 +08:00
|
|
|
|
public DrawablePopularBeatmapList(List<APIBeatmapSet> beatmapSets)
|
|
|
|
|
: base(beatmapSets)
|
2020-08-01 12:04:39 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-01 15:02:00 +08:00
|
|
|
|
protected override DashboardBeatmapPanel CreateBeatmapPanel(APIBeatmapSet beatmapSet) => new DashboardPopularBeatmapPanel(beatmapSet);
|
2020-08-01 12:04:39 +08:00
|
|
|
|
|
2022-01-28 12:53:48 +08:00
|
|
|
|
protected override LocalisableString Title => HomeStrings.UserBeatmapsPopular;
|
2020-08-01 12:04:39 +08:00
|
|
|
|
}
|
|
|
|
|
}
|