(staging_handle: f64)
| 1747 | |
| 1748 | #[no_mangle] |
| 1749 | pub extern "C" fn bloom_commit_sound(staging_handle: f64) -> f64 { |
| 1750 | match bloom_shared::staging::take_sound(staging_handle) { |
| 1751 | Some(sd) => engine().audio.load_sound(sd), |
| 1752 | None => 0.0, |
| 1753 | } |
| 1754 | } |
| 1755 | |
| 1756 | #[no_mangle] |
| 1757 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
nothing calls this directly
no test coverage detected