1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
extern crate time;


#[cfg(target_os = "emscripten")]
mod main_loop_emscripten;
#[cfg(not(target_os = "emscripten"))]
mod main_loop;


#[cfg(target_os = "emscripten")]
pub use self::main_loop_emscripten::*;
#[cfg(not(target_os = "emscripten"))]
pub use self::main_loop::*;