mirror of
https://github.com/ppy/osu.git
synced 2025-02-21 04:13:21 +08:00
25 lines
460 B
C#
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
|
|
}
|
|
}
|