(staging_handle: f64)
| 2444 | |
| 2445 | #[no_mangle] |
| 2446 | pub extern "C" fn bloom_commit_music(staging_handle: f64) -> f64 { |
| 2447 | match bloom_shared::staging::take_sound(staging_handle) { |
| 2448 | Some(sd) => engine().audio.load_music(sd), |
| 2449 | None => 0.0, |
| 2450 | } |
| 2451 | } |
| 2452 | |
| 2453 | fn pollster_block_on<F: std::future::Future>(future: F) -> F::Output { |
| 2454 | use std::task::{Context, Poll, Wake, Waker}; |
nothing calls this directly
no test coverage detected