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