refactoring

This commit is contained in:
2026-06-07 00:19:53 -05:00
parent ea18fe8fc2
commit ea79dc20f9
13 changed files with 805 additions and 749 deletions
+9 -1
View File
@@ -1,6 +1,6 @@
/// The optional per-cell visual floor layer ([`floor::FloorSpec`], [`floor::build_floor`]).
pub mod floor;
/// Core game types: [`game::Board`], [`game::Glyph`], [`game::Archetype`], etc.
/// Core game types: [`board::Board`], [`glyph::Glyph`], [`archetype::Archetype`], etc.
pub mod game;
/// Styled log messages ([`log::LogLine`]) for the in-game message feed.
pub mod log;
@@ -8,3 +8,11 @@ pub mod log;
pub mod map_file;
/// Rhai scripting runtime for board objects ([`script::ScriptHost`]).
pub mod script;
pub mod glyph;
mod font;
mod utils;
mod archetype;
mod object_def;
mod board;
pub use board::Board;