mirror of https://github.com/ppy/osu
Improve xmldoc + remove explicit Special2 value
Special2 value is implicit at Special1 + 1 (2).
This commit is contained in:
parent
76eac9057d
commit
2bc67629b8
|
@ -20,8 +20,12 @@ public enum ManiaAction
|
|||
[Description("Special 1")]
|
||||
Special1 = 1,
|
||||
[Description("Special 2")]
|
||||
Special2 = 2,
|
||||
Special2,
|
||||
|
||||
/// <summary>
|
||||
/// This offsets the start value of normal keys in-case we add more special keys
|
||||
/// above at a later time, without breaking replays/configs.
|
||||
/// </summary>
|
||||
[Description("Key 1")]
|
||||
Key1 = 1000,
|
||||
[Description("Key 2")]
|
||||
|
|
Loading…
Reference in New Issue