| 3 | #pragma once |
| 4 | |
| 5 | enum class ControllerButton { |
| 6 | Invalid, |
| 7 | FaceBottom, |
| 8 | FaceRight, |
| 9 | FaceLeft, |
| 10 | FaceTop, |
| 11 | LeftStick, |
| 12 | RightStick, |
| 13 | LeftShoulder, |
| 14 | RightShoulder, |
| 15 | DpadDown, |
| 16 | DpadUp, |
| 17 | DpadLeft, |
| 18 | DpadRight, |
| 19 | Select, |
| 20 | Start, |
| 21 | Count |
| 22 | }; |
| 23 | |
| 24 | enum class ControllerAxis { |
| 25 | Invalid, |
nothing calls this directly
no outgoing calls
no test coverage detected