MoonWorks/src/Input/AxisButtonCode.cs

15 lines
177 B
C#
Raw Permalink Normal View History

2022-07-12 23:09:23 +00:00
namespace MoonWorks.Input
{
public enum AxisButtonCode
{
LeftX_Left,
LeftX_Right,
LeftY_Up,
LeftY_Down,
RightX_Left,
RightX_Right,
RightY_Up,
RightY_Down
}
}