//! A collection of map generators. //! //! The generators are implemented for the following types of maps: //! * Dungeon maps //! pub mod map_builder; pub mod geometry; pub mod map; pub (crate) mod dijkstra; pub (crate) mod random;