(staging_handle: f64)
| 1642 | |
| 1643 | #[no_mangle] |
| 1644 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
| 1645 | match bloom_shared::staging::take_sound(staging_handle) { |
| 1646 | Some(sd) => engine().audio.load_music(sd), |
| 1647 | None => 0.0, |
| 1648 | } |
| 1649 | } |
| 1650 | |
| 1651 | #[no_mangle] |
| 1652 | pub extern "C" fn bloom_run_game(_callback: extern "C" fn(f64)) { |
nothing calls this directly
no test coverage detected