mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Re-namespacing
This commit is contained in:
29
osu.Game/Scoring/ScoreRank.cs
Normal file
29
osu.Game/Scoring/ScoreRank.cs
Normal file
@ -0,0 +1,29 @@
|
||||
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace osu.Game.Scoring
|
||||
{
|
||||
public enum ScoreRank
|
||||
{
|
||||
[Description(@"F")]
|
||||
F,
|
||||
[Description(@"F")]
|
||||
D,
|
||||
[Description(@"C")]
|
||||
C,
|
||||
[Description(@"B")]
|
||||
B,
|
||||
[Description(@"A")]
|
||||
A,
|
||||
[Description(@"S")]
|
||||
S,
|
||||
[Description(@"SPlus")]
|
||||
SH,
|
||||
[Description(@"SS")]
|
||||
X,
|
||||
[Description(@"SSPlus")]
|
||||
XH,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user