| 222 | [[nodiscard]] ImGuiKey keycodeToImGuiMod(sf::Keyboard::Key code); |
| 223 | |
| 224 | struct StickInfo |
| 225 | { |
| 226 | sf::Joystick::Axis xAxis{sf::Joystick::Axis::X}; |
| 227 | sf::Joystick::Axis yAxis{sf::Joystick::Axis::Y}; |
| 228 | |
| 229 | bool xInverted{false}; |
| 230 | bool yInverted{false}; |
| 231 | |
| 232 | float threshold{15}; |
| 233 | }; |
| 234 | |
| 235 | struct TriggerInfo |
| 236 | { |
nothing calls this directly
no outgoing calls
no test coverage detected