Improve xmldoc + remove explicit Special2 value

Special2 value is implicit at Special1 + 1 (2).
This commit is contained in:
Dan Balasescu 2018-01-23 10:03:34 +09:00 committed by GitHub
parent 76eac9057d
commit 2bc67629b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -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")]