mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
ScoreRank, Avatar to own files, +DrawableRank
This commit is contained in:
@ -3,7 +3,6 @@
|
||||
|
||||
using osu.Game.Users;
|
||||
using osu.Game.Database;
|
||||
using System.ComponentModel;
|
||||
using osu.Game.Modes.Mods;
|
||||
|
||||
namespace osu.Game.Modes
|
||||
@ -22,34 +21,4 @@ namespace osu.Game.Modes
|
||||
public Replay Replay;
|
||||
public BeatmapInfo Beatmap;
|
||||
}
|
||||
|
||||
public enum ScoreRank
|
||||
{
|
||||
[Description(@"F")]
|
||||
F,
|
||||
|
||||
[Description(@"F")]
|
||||
D,
|
||||
|
||||
[Description(@"C")]
|
||||
C,
|
||||
|
||||
[Description(@"B")]
|
||||
B,
|
||||
|
||||
[Description(@"A")]
|
||||
A,
|
||||
|
||||
[Description(@"S")]
|
||||
S,
|
||||
|
||||
[Description(@"SPlus")]
|
||||
SPlus,
|
||||
|
||||
[Description(@"SS")]
|
||||
SS,
|
||||
|
||||
[Description(@"SSPlus")]
|
||||
SSPlus,
|
||||
}
|
||||
}
|
||||
|
37
osu.Game/Modes/ScoreRank.cs
Normal file
37
osu.Game/Modes/ScoreRank.cs
Normal file
@ -0,0 +1,37 @@
|
||||
// Copyright (c) 2007-2017 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.Modes
|
||||
{
|
||||
public enum ScoreRank
|
||||
{
|
||||
[Description(@"F")]
|
||||
F,
|
||||
|
||||
[Description(@"F")]
|
||||
D,
|
||||
|
||||
[Description(@"C")]
|
||||
C,
|
||||
|
||||
[Description(@"B")]
|
||||
B,
|
||||
|
||||
[Description(@"A")]
|
||||
A,
|
||||
|
||||
[Description(@"S")]
|
||||
S,
|
||||
|
||||
[Description(@"SPlus")]
|
||||
SPlus,
|
||||
|
||||
[Description(@"SS")]
|
||||
SS,
|
||||
|
||||
[Description(@"SSPlus")]
|
||||
SSPlus,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user