(staging_handle: f64)
| 2181 | |
| 2182 | #[no_mangle] |
| 2183 | pub extern "C" fn bloom_commit_sound(staging_handle: f64) -> f64 { |
| 2184 | match bloom_shared::staging::take_sound(staging_handle) { |
| 2185 | Some(sd) => engine().audio.load_sound(sd), |
| 2186 | None => 0.0, |
| 2187 | } |
| 2188 | } |
| 2189 | |
| 2190 | #[no_mangle] |
| 2191 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
no test coverage detected