(staging_handle: f64)
| 1755 | |
| 1756 | #[no_mangle] |
| 1757 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
| 1758 | match bloom_shared::staging::take_sound(staging_handle) { |
| 1759 | Some(sd) => engine().audio.load_music(sd), |
| 1760 | None => 0.0, |
| 1761 | } |
| 1762 | } |
| 1763 | |
| 1764 | fn pollster_block_on<F: std::future::Future>(future: F) -> F::Output { |
| 1765 | use std::task::{Context, Poll, Wake, Waker}; |
nothing calls this directly
no test coverage detected