(&mut self, x: f32, y: f32)
| 283 | #[inline] |
| 284 | pub fn set_key_state(&mut self, key: KeyCode, is_down: bool) { |
| 285 | self.runtime.set_key_state(key, is_down); |
| 286 | } |
| 287 | |
| 288 | #[inline] |
| 289 | pub fn push_text_input(&mut self, text: impl Into<String>) { |
| 290 | self.runtime.push_text_input(text); |
no outgoing calls
no test coverage detected