here_be_dragons/src/lib.rs
2020-09-22 20:38:37 +02:00

15 lines
306 B
Rust

//! A collection of map generators.
//!
//! The generators are implemented for the following types of maps:
//! * Dungeon maps
//!
pub mod filter;
pub mod geometry;
pub mod map;
pub use map::{Map, TileType};
pub use filter::{MapFilter, MapBuilder};
pub (crate) mod dijkstra;
pub (crate) mod random;