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;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using static osu.Game.Users.User;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Historical
|
|
|
|
|
{
|
|
|
|
|
public class ReplaysSubsection : ChartProfileSubsection
|
|
|
|
|
{
|
2021-04-13 02:51:04 +08:00
|
|
|
|
protected override string GraphCounterName => "Replays Watched";
|
|
|
|
|
|
2020-11-14 23:48:47 +08:00
|
|
|
|
public ReplaysSubsection(Bindable<User> user)
|
|
|
|
|
: base(user, "Replays Watched History")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-15 02:20:37 +08:00
|
|
|
|
protected override UserHistoryCount[] GetValues(User user) => user?.ReplaysWatchedCounts;
|
2020-11-14 23:48:47 +08:00
|
|
|
|
}
|
|
|
|
|
}
|