Files
kiln/kiln-core/src/lib.rs
T

9 lines
336 B
Rust
Raw Normal View History

2026-05-30 20:20:09 -05:00
/// Core game types: [`game::Board`], [`game::Glyph`], [`game::Archetype`], etc.
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;