1 2 3 4 5 6 7 8
pub mod game; pub mod custom { use grid::Grid; pub struct RegionId(pub u16); pub struct RegionsMap(pub Grid<RegionId>); }