(staging_handle: f64)
| 3035 | |
| 3036 | #[no_mangle] |
| 3037 | pub extern "C" fn bloom_commit_sound(staging_handle: f64) -> f64 { |
| 3038 | match bloom_shared::staging::take_sound(staging_handle) { |
| 3039 | Some(sd) => engine().audio.load_sound(sd), |
| 3040 | None => 0.0, |
| 3041 | } |
| 3042 | } |
| 3043 | |
| 3044 | #[no_mangle] |
| 3045 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
nothing calls this directly
no test coverage detected