Skip to main content

concinnity_engine/components/
mod.rs

1//! Client-side component surface: a thin re-export of concinnity-core's
2//! component types under the historical `crate::components::*` paths. All
3//! components are pure data now: every system became an internal client system
4//! living in its own domain module (`gfx::graphics_system`,
5//! `gfx::camera_controller`, `gfx::animation`, `ui`, `hud`, `physics`) or
6//! audio module (`crate::audio`), constructed by `World::start` from the
7//! components a world declares.
8pub use concinnity_core::components::*;