Something went wrong. Try again.
A video game where you play as a misaligned AI, deceiving and building power. An experiment in spec-driven development.
Something went wrong. Try again.
691 B · 31 lines
Rust
at commit e957ce7b
1234567891011121314151617181920212223242526272829303132//! 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;