2021-07-20 07:29:35 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-07-20 07:29:35 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
|
|
{
|
|
|
|
public enum RankingsScope
|
|
|
|
{
|
2021-08-03 17:29:02 +08:00
|
|
|
[LocalisableDescription(typeof(RankingsStrings), nameof(RankingsStrings.TypePerformance))]
|
2021-07-20 07:29:35 +08:00
|
|
|
Performance,
|
|
|
|
|
2021-08-03 17:29:02 +08:00
|
|
|
[LocalisableDescription(typeof(RankingsStrings), nameof(RankingsStrings.TypeCharts))]
|
|
|
|
Spotlights,
|
2021-07-20 07:29:35 +08:00
|
|
|
|
2021-08-03 17:29:02 +08:00
|
|
|
[LocalisableDescription(typeof(RankingsStrings), nameof(RankingsStrings.TypeScore))]
|
|
|
|
Score,
|
2021-07-20 07:29:35 +08:00
|
|
|
|
2021-08-03 17:29:02 +08:00
|
|
|
[LocalisableDescription(typeof(RankingsStrings), nameof(RankingsStrings.TypeCountry))]
|
|
|
|
Country
|
2021-07-20 07:29:35 +08:00
|
|
|
}
|
|
|
|
}
|