(staging_handle: f64)
| 2436 | |
| 2437 | #[no_mangle] |
| 2438 | pub extern "C" fn bloom_commit_sound(staging_handle: f64) -> f64 { |
| 2439 | match bloom_shared::staging::take_sound(staging_handle) { |
| 2440 | Some(sd) => engine().audio.load_sound(sd), |
| 2441 | None => 0.0, |
| 2442 | } |
| 2443 | } |
| 2444 | |
| 2445 | #[no_mangle] |
| 2446 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
nothing calls this directly
no test coverage detected