2026-06-06 18:49:45 -05:00
|
|
|
/// The optional per-cell visual floor layer ([`floor::FloorSpec`], [`floor::build_floor`]).
|
|
|
|
|
pub mod floor;
|
2026-06-07 00:19:53 -05:00
|
|
|
/// Core game types: [`board::Board`], [`glyph::Glyph`], [`archetype::Archetype`], etc.
|
2026-05-30 20:20:09 -05:00
|
|
|
pub mod game;
|
2026-06-03 22:46:54 -05:00
|
|
|
/// Styled log messages ([`log::LogLine`]) for the in-game message feed.
|
|
|
|
|
pub mod log;
|
2026-05-30 20:20:09 -05:00
|
|
|
/// Map file loading and saving (`.toml` format).
|
|
|
|
|
pub mod map_file;
|
2026-06-04 20:11:55 -05:00
|
|
|
/// Rhai scripting runtime for board objects ([`script::ScriptHost`]).
|
|
|
|
|
pub mod script;
|
2026-06-07 00:19:53 -05:00
|
|
|
pub mod glyph;
|
|
|
|
|
mod font;
|
|
|
|
|
mod utils;
|
|
|
|
|
mod archetype;
|
|
|
|
|
mod object_def;
|
|
|
|
|
mod board;
|
|
|
|
|
|
2026-06-07 00:46:38 -05:00
|
|
|
pub use board::Board;
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests;
|