//! PLATO MUD Engine — Constraint-Theory Knowledge Rooms with FLUX Transference
//!
//! A Rust MUD engine where rooms are computational domains, tiles are
//! structured knowledge objects, and FLUX carries zeitgeist between rooms.
//! All actions pass through alignment constraints.
extern crate alloc;
pub use AlignmentChecker;
pub use Engine;
pub use FluxManager;
pub use *;