cae  0.0.0
Cross-API graphics engine
Loading...
Searching...
No Matches
Gamepad.hpp
Go to the documentation of this file.
1///
2/// @file Gamepad.hpp
3/// @brief This file contains the gamepad keys
4/// @namespace cae
5///
6
7#pragma once
8
9#include <cstdint>
10
11namespace cae
12{
13 enum class GamepadButton : uint8_t
14 {
15 A = 0,
16 B,
17 X,
18 Y,
19 Back,
20 Guide,
21 Start,
22 LThumb,
23 RThumb,
26 DPadUp,
30 };
31
32 enum class GamepadAxis : uint8_t
33 {
34 LeftX = 0,
35 LeftY,
36 RightX,
37 RightY,
40 };
41} // namespace cae
GamepadButton
Definition Gamepad.hpp:14
GamepadAxis
Definition Gamepad.hpp:33