2023-06-23 00:37:25 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2021-07-20 07:29:35 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
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.TypeScore))]
|
|
|
|
|
Score,
|
2021-07-20 07:29:35 +08:00
|
|
|
|
|
2021-08-03 17:29:02 +08:00
|
|
|
|
[LocalisableDescription(typeof(RankingsStrings), nameof(RankingsStrings.TypeCountry))]
|
2023-11-08 07:53:41 +08:00
|
|
|
|
Country,
|
|
|
|
|
|
2024-03-13 12:07:21 +08:00
|
|
|
|
[LocalisableDescription(typeof(RankingsStrings), nameof(RankingsStrings.TypeCharts))]
|
|
|
|
|
Spotlights,
|
|
|
|
|
|
2023-11-08 07:53:41 +08:00
|
|
|
|
[LocalisableDescription(typeof(RankingsStrings), nameof(RankingsStrings.TypeKudosu))]
|
|
|
|
|
Kudosu,
|
2021-07-20 07:29:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|