2017-03-14 21:58:28 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-03-15 12:55:29 +08:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Scoring
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
|
|
|
|
public enum ScoreRank
|
|
|
|
|
{
|
2017-03-15 12:55:29 +08:00
|
|
|
|
[Description(@"F")]
|
2017-03-14 21:58:28 +08:00
|
|
|
|
F,
|
2017-03-15 12:55:29 +08:00
|
|
|
|
[Description(@"F")]
|
|
|
|
|
D,
|
|
|
|
|
[Description(@"C")]
|
2017-03-14 21:58:28 +08:00
|
|
|
|
C,
|
2017-03-15 12:55:29 +08:00
|
|
|
|
[Description(@"B")]
|
2017-03-14 21:58:28 +08:00
|
|
|
|
B,
|
2017-03-15 12:55:29 +08:00
|
|
|
|
[Description(@"A")]
|
2017-03-14 21:58:28 +08:00
|
|
|
|
A,
|
2017-03-15 12:55:29 +08:00
|
|
|
|
[Description(@"S")]
|
2017-03-14 21:58:28 +08:00
|
|
|
|
S,
|
2017-03-15 12:55:29 +08:00
|
|
|
|
[Description(@"SPlus")]
|
|
|
|
|
SH,
|
|
|
|
|
[Description(@"SS")]
|
|
|
|
|
X,
|
|
|
|
|
[Description(@"SSPlus")]
|
|
|
|
|
XH,
|
2017-03-14 21:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|