mirror of
https://github.com/ppy/osu
synced 2025-01-03 04:42:10 +00:00
Cleanup.
This commit is contained in:
parent
eb374c5774
commit
506e27a30e
@ -5,7 +5,7 @@ namespace osu.Game.Beatmaps
|
||||
{
|
||||
public enum BeatmapSetOnlineStatus
|
||||
{
|
||||
None,
|
||||
None = -3,
|
||||
Graveyard = -2,
|
||||
WIP = -1,
|
||||
Pending = 0,
|
||||
|
@ -20,6 +20,7 @@ namespace osu.Game.Beatmaps.Drawables
|
||||
get { return status; }
|
||||
set
|
||||
{
|
||||
if (value == status) return;
|
||||
status = value;
|
||||
|
||||
statusText.Text = Enum.GetName(typeof(BeatmapSetOnlineStatus), Status)?.ToUpper();
|
||||
|
Loading…
Reference in New Issue
Block a user