use super::*;
cfg_if::cfg_if! {
if #[cfg(all(not(all(target_family = "wasm", not(target_os = "wasi"))), feature="sdl2" ))] {
#[path ="./audio_backends/sdl2_audio.rs"]
mod audio_backend;
}else if #[cfg(all(not(all(target_family = "wasm", not(target_os = "wasi"))), feature="glutin" ))]{
#[path ="./audio_backends/glutin_audio.rs"]
mod audio_backend;
}else if #[cfg(all(target_family = "wasm", not(target_os = "wasi")))] {
#[path = "./audio_backends/web_audio.rs"]
mod audio_backend;
}
}
pub use audio_backend::*;