(key: f64)
| 1826 | // Input injection + platform detection |
| 1827 | #[no_mangle] |
| 1828 | pub extern "C" fn bloom_inject_key_down(key: f64) { |
| 1829 | engine().input.set_key_down(key as usize); |
| 1830 | } |
| 1831 | #[no_mangle] |
| 1832 | pub extern "C" fn bloom_inject_key_up(key: f64) { |
| 1833 | engine().input.set_key_up(key as usize); |
nothing calls this directly
no test coverage detected