(staging_handle: f64)
| 1634 | |
| 1635 | #[no_mangle] |
| 1636 | pub extern "C" fn bloom_commit_sound(staging_handle: f64) -> f64 { |
| 1637 | match bloom_shared::staging::take_sound(staging_handle) { |
| 1638 | Some(sd) => engine().audio.load_sound(sd), |
| 1639 | None => 0.0, |
| 1640 | } |
| 1641 | } |
| 1642 | |
| 1643 | #[no_mangle] |
| 1644 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
nothing calls this directly
no test coverage detected