Add position display in contracted score panels

This commit is contained in:
smoogipoo
2020-07-28 22:08:10 +09:00
parent f1e721e396
commit b361761d86
5 changed files with 49 additions and 1 deletions

View File

@ -179,6 +179,13 @@ namespace osu.Game.Scoring
[JsonIgnore]
public bool DeletePending { get; set; }
/// <summary>
/// The position of this score, starting at 1.
/// </summary>
[NotMapped]
[JsonProperty("position")]
public int? Position { get; set; }
[Serializable]
protected class DeserializedMod : IMod
{