1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//! A collection of useful amethyst utilities, designed to make your game dev life easier. #![warn( missing_debug_implementations, missing_docs, rust_2018_idioms, rust_2018_compatibility )] #![warn(clippy::all)] #![allow(clippy::new_without_default)] pub use self::app_root_dir::*; pub mod app_root_dir; pub mod auto_fov; pub mod circular_buffer; pub mod fps_counter; pub mod ortho_camera; pub mod removal; pub mod scene; pub mod tag; pub mod time_destroy;