Skip to content

Commit

Permalink
Add loved submission status, closes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-hacker authored Jul 31, 2017
1 parent 72eee0f commit a5b7db3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions osu-database-reader/Enums.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down Expand Up @@ -41,12 +41,14 @@ public enum PlayerRank : byte

public enum SubmissionStatus : byte
{
Unknown,
NotSubmitted,
Pending, //both pending and graveyarded
EditableCutoff, //not used anymore?
Ranked,
Approved
Unknown = 0,
NotSubmitted = 1,
Pending = 2, //both pending and graveyarded
EditableCutoff = 3, //not used anymore?
Ranked = 4,
Approved = 5,
Unknown1 = 6,
Loved = 7
}

[Flags]
Expand Down

0 comments on commit a5b7db3

Please sign in to comment.