1
2
3
4
5
6
7
pub mod prelude;

#[cfg(target_arch = "wasm32")]
pub use notan_web::{WebBackend as DefaultBackend, *};

#[cfg(not(target_arch = "wasm32"))]
pub use notan_winit::{WinitBackend as DefaultBackend, *};