civ_map_generator 0.1.5

A civilization map generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This module contains the components of the tile in the map.
//! For example, it includes the tile's TerrainType, BaseTerrain, NationWonder, Resource, and so on.

mod base_terrain;
mod feature;
mod natural_wonder;
mod resource;
mod terrain_type;

pub use base_terrain::*;
pub use feature::*;
pub use natural_wonder::*;
pub use resource::*;
pub use terrain_type::*;