1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
// #![doc(html_logo_url = "https://rin.rs/logo.svg")]
// #![doc(html_favicon_url = "https://rin.rs/favicon.ico")]

//pub use self::events_app::*;

// #[cfg(target_os="emscripten")]
// mod emscripten_app;
// #[cfg(target_os="emscripten")]
// pub use self::emscripten_app::*;
#[cfg(any(feature="glfw_window", feature="stdweb_window", feature="emscripten_window", feature="gluin_window"))]
mod app;
#[cfg(any(feature="glfw_window", feature="stdweb_window", feature="emscripten_window", feature="gluin_window"))]
pub use self::app::*;
#[cfg(any(feature="glfw_window", feature="stdweb_window", feature="emscripten_window", feature="gluin_window"))]
mod application_callbacks;
#[cfg(any(feature="glfw_window", feature="stdweb_window", feature="emscripten_window", feature="gluin_window"))]
pub use self::application_callbacks::ApplicationCallbacks;