use super::*;
cfg_if::cfg_if! {
if #[cfg(all(not(all(target_family = "wasm", not(target_os = "wasi"))), feature="sdl2" ))] {
#[path ="./window_backends/sdl2_window.rs"]
mod window_backend;
}else if #[cfg(all(not(all(target_family = "wasm", not(target_os = "wasi"))), feature="glutin" ))]{
#[path ="./window_backends/glutin_window.rs"]
mod window_backend;
}else if #[cfg(all(target_family = "wasm", not(target_os = "wasi")))] {
#[path = "./window_backends/web_window.rs"]
mod window_backend;
}
}
pub use window_backend::*;