mod bytes; mod float_ord; mod label; mod time; pub use bytes::*; pub use float_ord::*; pub use label::*; pub use time::*; pub mod prelude { pub use crate::{EntityLabels, Labels, Time, Timer}; } use bevy_app::prelude::*; use bevy_ecs::prelude::*; use bevy_math::{Mat3, Mat4, Quat, Vec2, Vec3}; use bevy_type_registry::RegisterType; /// Adds core functionality to Apps. #[derive(Default)] pub struct CorePlugin; impl Plugin for CorePlugin { fn build(&self, app: &mut AppBuilder) { app.init_resource::