here_be_dragons/src/lib.rs

15 lines
306 B
Rust
Raw Normal View History

2020-09-01 12:46:31 +00:00
//! A collection of map generators.
//!
//! The generators are implemented for the following types of maps:
//! * Dungeon maps
//!
2020-09-22 18:38:37 +00:00
pub mod filter;
2020-09-16 07:57:59 +00:00
pub mod geometry;
pub mod map;
2020-09-22 18:38:37 +00:00
pub use map::{Map, TileType};
pub use filter::{MapFilter, MapBuilder};
2020-09-16 07:57:59 +00:00
pub (crate) mod dijkstra;
pub (crate) mod random;