| 234 | } |
| 235 | |
| 236 | pub(crate) struct AxisState { |
| 237 | curr: HashMap<(usize, GamepadAxis), f32>, |
| 238 | prev: HashMap<(usize, GamepadAxis), f32>, |
| 239 | } |
| 240 | |
| 241 | impl AxisState { |
| 242 | fn new() -> AxisState { |
nothing calls this directly
no outgoing calls
no test coverage detected