// Copyright (c) ppy Pty Ltd . 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 } }