amethyst_engine/
lib.rs

1#![crate_name = "amethyst_engine"]
2#![crate_type = "lib"]
3#![doc(html_logo_url = "http://tinyurl.com/hgsb45k")]
4
5//! Game engine sitting atop the core libraries.
6
7mod app;
8mod state;
9mod timing;
10
11pub use self::app::Application;
12pub use self::state::{State, StateMachine, Trans};
13pub use self::timing::{Duration, SteadyTime, Stopwatch};