(key: f64)
| 1615 | // Input injection + platform detection |
| 1616 | #[no_mangle] |
| 1617 | pub extern "C" fn bloom_inject_key_down(key: f64) { |
| 1618 | engine().input.set_key_down(key as usize); |
| 1619 | } |
| 1620 | #[no_mangle] |
| 1621 | pub extern "C" fn bloom_inject_key_up(key: f64) { |
| 1622 | engine().input.set_key_up(key as usize); |
nothing calls this directly
no test coverage detected