1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 06:38:27 +08:00

24 lines
837 B
C#
Raw Normal View History

2020-11-14 18:48:47 +03: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 16:20:37 +02:00
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
2020-11-14 18:48:47 +03:00
using osu.Game.Users;
using static osu.Game.Users.User;
namespace osu.Game.Overlays.Profile.Sections.Historical
{
public class ReplaysSubsection : ChartProfileSubsection
{
2021-07-17 16:20:37 +02:00
protected override LocalisableString GraphCounterName => UsersStrings.ShowExtraHistoricalReplaysWatchedCountsCountLabel;
2020-11-14 18:48:47 +03:00
public ReplaysSubsection(Bindable<User> user)
2021-07-17 16:20:37 +02:00
: base(user, UsersStrings.ShowExtraHistoricalReplaysWatchedCountsTitle)
2020-11-14 18:48:47 +03:00
{
}
2020-11-14 21:20:37 +03:00
protected override UserHistoryCount[] GetValues(User user) => user?.ReplaysWatchedCounts;
2020-11-14 18:48:47 +03:00
}
}