here_be_dragons/src/lib.rs
2020-09-16 09:57:59 +02:00

12 lines
239 B
Rust

//! 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;