1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/RecentSection.cs

23 lines
679 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-06-07 22:49:14 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-02-26 03:46:46 +08:00
using osu.Game.Overlays.Profile.Sections.Recent;
2017-07-13 12:53:45 +08:00
namespace osu.Game.Overlays.Profile.Sections
2017-06-07 22:49:14 +08:00
{
public class RecentSection : ProfileSection
{
public override string Title => "Recent";
2017-06-15 23:47:34 +08:00
2018-02-25 21:48:39 +08:00
public override string Identifier => "recent_activity";
public RecentSection()
{
Children = new[]
{
new PaginatedRecentActivityContainer(User, null, @"This user hasn't done anything notable recently!"),
2018-02-25 21:48:39 +08:00
};
}
2017-06-07 22:49:14 +08:00
}
}