| 119 | // -------------------------------------------------------- |
| 120 | |
| 121 | struct XInputMap_Trigger { |
| 122 | constexpr XInputMap_Trigger(uint8_t i) |
| 123 | : index(i) {} |
| 124 | static const XInputController::Range range; |
| 125 | const uint8_t index; |
| 126 | }; |
| 127 | |
| 128 | const XInputController::Range XInputMap_Trigger::range = { 0, 255 }; // uint8_t |
| 129 |
nothing calls this directly
no outgoing calls
no test coverage detected