> ## 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.

# GameInputRacingWheelAxes

> GameInputRacingWheelAxes

# GameInputRacingWheelAxes

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

## Syntax

```cpp theme={null}
enum GameInputRacingWheelAxes
{
    GameInputRacingWheelAxesNone       = 0x00000000,
    GameInputRacingWheelSteering       = 0x00000100,
    GameInputRacingWheelThrottle       = 0x00000200,
    GameInputRacingWheelBrake          = 0x00000400,
    GameInputRacingWheelClutch         = 0x00000800,
    GameInputRacingWheelHandbrake      = 0x00001000,
    GameInputRacingWheelPatternShifter = 0x00002000,
};
```

## Constants

| Constant                           | Description                        |
| ---------------------------------- | ---------------------------------- |
| GameInputRacingWheelAxesNone       | Indicates the absence of an axis   |
| GameInputRacingWheelSteering       | Indicates the steering wheel axis  |
| GameInputRacingWheelThrottle       | Indicates the throttle axis        |
| GameInputRacingWheelBrake          | Indicates the brake axis           |
| GameInputRacingWheelClutch         | Indicates the clutch axis          |
| GameInputRacingWheelHandbrake      | Indicates the handbrake axis       |
| GameInputRacingWheelPatternShifter | Indicates the pattern shifter axis |

## Remarks

This enumeration is used with the [IGameInputMapper::GetRacingWheelAxisMappingInfo](/reference/input/gameinput/interfaces/igameinputmapper/methods/igameinputmapper_getracingwheelaxismappinginfo) method to retrieve mapping information for a specific racing wheel axis.

## Requirements

**Header:** GameInput.h

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

## 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::GetRacingWheelAxisMappingInfo](/reference/input/gameinput/interfaces/igameinputmapper/methods/igameinputmapper_getracingwheelaxismappinginfo.md)
- [GameInput](/reference/input/gameinput/gameinput_members.md)
- [GameInputRacingWheelInfo](/reference/input/gameinput/structs/gameinputracingwheelinfo.md)
- [GameInputRacingWheelButtons](/reference/input/gameinput/enums/gameinputracingwheelbuttons.md)
- [GameInputRacingWheelState](/reference/input/gameinput/structs/gameinputracingwheelstate.md)
