1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-09 06:17:24 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/Historical/PlayHistorySubsection.cs

22 lines
656 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;
using osu.Game.Users;
using static osu.Game.Users.User;
namespace osu.Game.Overlays.Profile.Sections.Historical
{
public class PlayHistorySubsection : ChartProfileSubsection
{
protected override string GraphCounterName => "Plays";
2020-11-14 23:48:47 +08:00
public PlayHistorySubsection(Bindable<User> user)
: base(user, "Play History")
{
}
2020-11-15 02:20:37 +08:00
protected override UserHistoryCount[] GetValues(User user) => user?.MonthlyPlaycounts;
2020-11-14 23:48:47 +08:00
}
}