ScoreRank, Avatar to own files, +DrawableRank

This commit is contained in:
DrabWeb
2017-03-14 10:58:28 -03:00
parent 8176b4ef77
commit 650fc7563d
7 changed files with 195 additions and 132 deletions

View File

@ -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,
}
}

View 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,
}
}