mirror of
https://github.com/ppy/osu.git
synced 2026-05-17 14:44:43 +08:00
27 lines
999 B
C#
27 lines
999 B
C#
// 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.
|
|
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Localisation;
|
|
|
|
namespace osu.Game.Screens.Select.Leaderboards
|
|
{
|
|
public enum LeaderboardSortMode
|
|
{
|
|
[LocalisableDescription(typeof(BeatmapLeaderboardWedgeStrings), nameof(BeatmapLeaderboardWedgeStrings.Score))]
|
|
Score,
|
|
|
|
[LocalisableDescription(typeof(BeatmapLeaderboardWedgeStrings), nameof(BeatmapLeaderboardWedgeStrings.Accuracy))]
|
|
Accuracy,
|
|
|
|
[LocalisableDescription(typeof(BeatmapLeaderboardWedgeStrings), nameof(BeatmapLeaderboardWedgeStrings.MaxCombo))]
|
|
MaxCombo,
|
|
|
|
[LocalisableDescription(typeof(BeatmapLeaderboardWedgeStrings), nameof(BeatmapLeaderboardWedgeStrings.Misses))]
|
|
Misses,
|
|
|
|
[LocalisableDescription(typeof(BeatmapLeaderboardWedgeStrings), nameof(BeatmapLeaderboardWedgeStrings.Date))]
|
|
Date,
|
|
}
|
|
}
|