2022-07-12 23:09:23 +00:00
|
|
|
namespace MoonWorks.Input
|
|
|
|
{
|
2023-09-14 18:23:04 +00:00
|
|
|
/// <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
|
|
|
|
}
|
|
|
|
}
|