2017-06-07 22:49:14 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-11-04 01:25:21 +08:00
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Overlays.Profile.Sections.Beatmaps;
|
|
|
|
|
|
2017-07-13 12:53:45 +08:00
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections
|
2017-06-07 22:49:14 +08:00
|
|
|
|
{
|
|
|
|
|
public class BeatmapsSection : ProfileSection
|
|
|
|
|
{
|
|
|
|
|
public override string Title => "Beatmaps";
|
2017-06-15 23:47:34 +08:00
|
|
|
|
|
|
|
|
|
public override string Identifier => "beatmaps";
|
2017-11-04 01:25:21 +08:00
|
|
|
|
|
|
|
|
|
public BeatmapsSection()
|
|
|
|
|
{
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2017-11-14 13:26:44 +08:00
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Favourite, User, "Favourite Beatmaps"),
|
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.RankedAndApproved, User, "Ranked & Approved Beatmaps"),
|
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Unranked, User, "Pending Beatmaps"),
|
|
|
|
|
new PaginatedBeatmapContainer(BeatmapSetType.Graveyard, User, "Graveyarded Beatmaps"),
|
2017-11-04 01:25:21 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2017-06-07 22:49:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|