Skip to content

Commit

Permalink
Add description attributes to RankedStatus enum
Browse files Browse the repository at this point in the history
  • Loading branch information
matte-ek committed Aug 20, 2024
1 parent 2160406 commit 6455fda
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion OsuSharp/Enums/RankedStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,36 +13,42 @@ public enum RankedStatus
/// <summary>
/// The beatmap is in the graveyard.
/// </summary>
[Description("graveyard")]
Graveyard = -2,

/// <summary>
/// The beatmap is a work in progress.
/// </summary>
[Description("wip")]
WIP = -1,

/// <summary>
/// The beatmap is pending a rank status evaluation.
/// </summary>
[Description("Pending")]
[Description("pending")]
Pending = 0,

/// <summary>
/// The beatmap is ranked.
/// </summary>
[Description("ranked")]
Ranked = 1,

/// <summary>
/// The beatmap is approved.
/// </summary>
[Description("approved")]
Approved = 2,

/// <summary>
/// The beatmap is qualified.
/// </summary>
[Description("qualified")]
Qualified = 3,

/// <summary>
/// The beatmap is loved.
/// </summary>
[Description("loved")]
Loved = 4
}

0 comments on commit 6455fda

Please sign in to comment.