2020-11-14 23:48:47 +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-11-14 23:48:47 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2021-07-17 22:20:37 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-07-17 22:20:37 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2020-11-14 23:48:47 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Historical
|
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
|
public partial class PlayHistorySubsection : ChartProfileSubsection
|
2020-11-14 23:48:47 +08:00
|
|
|
|
{
|
2021-07-17 22:20:37 +08:00
|
|
|
|
protected override LocalisableString GraphCounterName => UsersStrings.ShowExtraHistoricalMonthlyPlaycountsCountLabel;
|
2021-04-13 02:51:04 +08:00
|
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
|
public PlayHistorySubsection(Bindable<APIUser> user)
|
2021-07-17 22:20:37 +08:00
|
|
|
|
: base(user, UsersStrings.ShowExtraHistoricalMonthlyPlaycountsTitle)
|
2020-11-14 23:48:47 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 13:15:00 +08:00
|
|
|
|
protected override APIUserHistoryCount[] GetValues(APIUser user) => user?.MonthlyPlayCounts;
|
2020-11-14 23:48:47 +08:00
|
|
|
|
}
|
|
|
|
|
}
|