This commit is contained in:
2026-07-11 12:40:35 -05:00
parent f1eaaae5d0
commit 6dccf5fc23
14 changed files with 363 additions and 40 deletions
+3
View File
@@ -8,6 +8,8 @@ pub mod colors;
pub mod cp437;
/// Procedural floor generators ([`floor::FloorGenerator`]).
pub mod floor;
/// Field-of-view computation for dark boards ([`fov::Visibility`]).
pub mod fov;
/// Core game types: [`board::Board`], [`glyph::Glyph`], [`archetype::Archetype`], etc.
pub mod game;
pub mod glyph;
@@ -26,6 +28,7 @@ pub mod player;
pub mod keys;
pub use archetype::{Archetype, Builtin};
pub use board::Board;
pub use fov::{SIGHT_RADIUS, Visibility};
pub use utils::Direction;
#[cfg(test)]