(key: f64)
| 1378 | // Input injection + platform detection |
| 1379 | #[no_mangle] |
| 1380 | pub extern "C" fn bloom_inject_key_down(key: f64) { |
| 1381 | engine().input.set_key_down(key as usize); |
| 1382 | } |
| 1383 | #[no_mangle] |
| 1384 | pub extern "C" fn bloom_inject_key_up(key: f64) { |
| 1385 | engine().input.set_key_up(key as usize); |
nothing calls this directly
no test coverage detected