1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 04:13:21 +08:00
osu-lazer/osu.Game/Overlays/BeatmapListing/SearchRank.cs
2020-10-27 23:14:48 +03:00

25 lines
460 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 System.ComponentModel;
namespace osu.Game.Overlays.BeatmapListing
{
public enum SearchRank
{
[Description(@"Silver SS")]
XH,
[Description(@"SS")]
X,
[Description(@"Silver S")]
SH,
S,
A,
B,
C,
D
}
}