1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 05:47:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/Historical/ReplaysSubsection.cs

23 lines
836 B
C#
Raw Normal View History

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.
using osu.Framework.Bindables;
2021-07-17 22:20:37 +08:00
using osu.Framework.Localisation;
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
{
public class ReplaysSubsection : ChartProfileSubsection
{
2021-07-17 22:20:37 +08:00
protected override LocalisableString GraphCounterName => UsersStrings.ShowExtraHistoricalReplaysWatchedCountsCountLabel;
public ReplaysSubsection(Bindable<APIUser> user)
2021-07-17 22:20:37 +08:00
: base(user, UsersStrings.ShowExtraHistoricalReplaysWatchedCountsTitle)
2020-11-14 23:48:47 +08:00
{
}
protected override APIUserHistoryCount[] GetValues(APIUser user) => user?.ReplaysWatchedCounts;
2020-11-14 23:48:47 +08:00
}
}