amethyst_engine 0.3.1

Core engine library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![crate_name = "amethyst_engine"]
#![crate_type = "lib"]
#![doc(html_logo_url = "http://tinyurl.com/hgsb45k")]

//! Game engine sitting atop the core libraries.

mod app;
mod state;
mod timing;

pub use self::app::Application;
pub use self::state::{State, StateMachine, Trans};
pub use self::timing::{Duration, SteadyTime, Stopwatch};