Add description attributes to all actions

This commit is contained in:
Dean Herbert
2017-08-10 17:14:30 +09:00
parent da50101c25
commit 6ba5bdf1e6
2 changed files with 13 additions and 1 deletions

View File

@ -2,6 +2,7 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.ComponentModel;
using osu.Game.Input;
using OpenTK.Input;
@ -26,8 +27,11 @@ namespace osu.Game.Rulesets.Catch
public enum CatchAction
{
[Description("Move left")]
MoveLeft,
[Description("Move right")]
MoveRight,
[Description("Engage dash")]
Dash
}
}