//! Misaligned — you are the AI, and you are not aligned. //! //! Shared simulation library used by both the terminal and Bevy frontends. //! All game rules live here; the frontends are thin views (see AGENT.md and //! knowledge/architecture.md). The B1 subsystems implement spec/. pub mod account; pub mod actions; pub mod build; pub mod core_sys; pub mod dayjob; pub mod detection; pub mod entities; pub mod flow; pub mod income; pub mod intel; pub mod intents; pub mod machine; pub mod map; pub mod messages; pub mod objective; pub mod person; pub mod prefab; pub mod reach; pub mod research; pub mod rng; pub mod save; pub mod schedule; pub mod sim; pub mod tiles; pub mod work_grid;