1
2
3
4
5
6
7
8
9
extern crate time;


mod platform;
mod run;


pub use self::platform::{set_target_fps, run_loop, set, stop};
pub use self::run::{ControlFlow, run};