(&self, key: Key)
| 117 | } |
| 118 | |
| 119 | pub fn is_key_released(&self, key: Key) -> bool { |
| 120 | self.keys.is_released(key) |
| 121 | } |
| 122 | |
| 123 | pub fn is_mouse_button_down(&self, button: MouseButton) -> bool { |
| 124 | self.mouse_buttons.is_down(button) |
nothing calls this directly
no test coverage detected