mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 14:19:34 +08:00
24 lines
711 B
C#
24 lines
711 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Game.Overlays.Profile.Sections.Ranks;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections
|
|
{
|
|
public class HistoricalSection : ProfileSection
|
|
{
|
|
public override string Title => "Historical";
|
|
|
|
public override string Identifier => "historical";
|
|
|
|
private readonly ScoreContainer recent;
|
|
|
|
public HistoricalSection()
|
|
{
|
|
Child = recent = new ScoreContainer(ScoreType.Recent, User, "Recent Plays (24h)");
|
|
}
|
|
}
|
|
}
|