MoonWorks/src/Input/AxisButtonCode.cs

18 lines
314 B
C#
Raw Normal View History

2022-07-12 23:09:23 +00:00
namespace MoonWorks.Input
{
/// <summary>
/// Can be used to access a gamepad axis virtual button without a direct reference to the button object.
/// </summary>
2022-07-12 23:09:23 +00:00
public enum AxisButtonCode
{
LeftX_Left,
LeftX_Right,
LeftY_Up,
LeftY_Down,
RightX_Left,
RightX_Right,
RightY_Up,
RightY_Down
}
}