2020-07-13 06:22:05 +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.
|
|
|
|
|
|
2021-07-31 01:07:49 +08:00
|
|
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
2021-07-30 20:35:25 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
|
|
2020-07-13 06:22:05 +08:00
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
|
|
|
{
|
|
|
|
|
public class RankingsSortTabControl : OverlaySortTabControl<RankingsSortCriteria>
|
|
|
|
|
{
|
|
|
|
|
public RankingsSortTabControl()
|
|
|
|
|
{
|
2021-07-31 01:07:49 +08:00
|
|
|
|
Title = RankingsStrings.FilterTitle.ToUpper();
|
2020-07-13 06:22:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum RankingsSortCriteria
|
|
|
|
|
{
|
2021-08-03 17:29:02 +08:00
|
|
|
|
[LocalisableDescription(typeof(SortStrings), nameof(SortStrings.All))]
|
2020-07-13 06:22:05 +08:00
|
|
|
|
All,
|
2021-07-30 20:35:25 +08:00
|
|
|
|
|
2021-08-03 17:29:02 +08:00
|
|
|
|
[LocalisableDescription(typeof(SortStrings), nameof(SortStrings.Friends))]
|
|
|
|
|
Friends
|
2021-07-30 20:35:25 +08:00
|
|
|
|
}
|
2020-07-13 06:22:05 +08:00
|
|
|
|
}
|