> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GameInputFlightStickAxes

> GameInputFlightStickAxes

# GameInputFlightStickAxes

Enumerates flight stick axes. These values represent axes commonly found on flight stick peripherals. Unlike buttons, which can also represent state, these only represent an axis element in the flight stick.

## Syntax

```cpp theme={null}
enum GameInputFlightStickAxes
{
    GameInputFlightStickAxesNone = 0x00000000,
    GameInputFlightStickRoll     = 0x00000010,
    GameInputFlightStickPitch    = 0x00000020,
    GameInputFlightStickYaw      = 0x00000040,
    GameInputFlightStickThrottle = 0x00000080,
};
```

## Constants

| Constant                     | Description                      |
| ---------------------------- | -------------------------------- |
| GameInputFlightStickAxesNone | Indicates the absence of an axis |
| GameInputFlightStickRoll     | Indicates the roll axis          |
| GameInputFlightStickPitch    | Indicates the pitch axis         |
| GameInputFlightStickYaw      | Indicates the yaw axis           |
| GameInputFlightStickThrottle | Indicates the throttle axis      |

## Requirements

**Header:** GameInput.h

**Supported platforms:** Windows, XBOX One family consoles and XBOX Series consoles

## Remarks

This enumeration is used with the [IGameInputMapper::GetFlightStickAxisMappingInfo](/reference/input/gameinput/interfaces/igameinputmapper/methods/igameinputmapper_getflightstickaxismappinginfo) method to retrieve mapping information for a specific flight stick axis.

## See also

[Input API Overview](/build/core-features/common/input/overviews/input-overview)<br />
[GameInput](/reference/input/gameinput/gameinput_members)

## Version History

| Version | Changes     |
| ------- | ----------- |
| **v3**  | Introduced. |


## Related topics

- [IGameInputMapper::GetFlightStickAxisMappingInfo](/reference/input/gameinput/interfaces/igameinputmapper/methods/igameinputmapper_getflightstickaxismappinginfo.md)
- [GameInput](/reference/input/gameinput/gameinput_members.md)
- [IGameInputMapper::GetFlightStickButtonMappingInfo](/reference/input/gameinput/interfaces/igameinputmapper/methods/igameinputmapper_getflightstickbuttonmappinginfo.md)
- [GameInputFlightStickButtons](/reference/input/gameinput/enums/gameinputflightstickbuttons.md)
- [GameInputFlightStickInfo](/reference/input/gameinput/structs/gameinputflightstickinfo.md)
