#![feature(specialization)] pub mod app; pub mod asset; pub mod core; pub mod diagnostic; pub mod ecs; pub mod prelude; pub mod render; pub mod serialization; pub mod ui; pub use bevy_transform as transform; pub use glam as math; pub use legion; pub use once_cell;