diplomacy/geo/
mod.rs

1//! This module contains the types needed to build a map of the world in Diplomacy.
2//! Terminology in this module comes from the [DATC](https://webdiplomacy.net/doc/DATC_v3_0.html).
3
4mod border;
5mod location;
6mod map;
7mod province;
8mod region;
9mod standard;
10
11pub mod builder;
12
13pub use self::border::Border;
14pub use self::location::Location;
15pub use self::map::Map;
16pub use self::province::{Province, ProvinceKey, SupplyCenter};
17pub use self::region::{Coast, Region, RegionKey, Terrain};
18pub use self::standard::standard_map;