(staging_handle: f64)
| 2189 | |
| 2190 | #[no_mangle] |
| 2191 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
| 2192 | match bloom_shared::staging::take_sound(staging_handle) { |
| 2193 | Some(sd) => engine().audio.load_music(sd), |
| 2194 | None => 0.0, |
| 2195 | } |
| 2196 | } |
| 2197 | |
| 2198 | #[no_mangle] |
| 2199 | pub extern "C" fn bloom_run_game(_callback: extern "C" fn(f64)) { |
no test coverage detected