1 | #pragma once |
---|---|
2 | |
3 | #include <string> |
4 | #include "Types.h" |
5 | |
6 | struct RegionEntry |
7 | { |
8 | RegionID id; |
9 | RegionID parent_id; |
10 | RegionType type; |
11 | RegionDepth depth; |
12 | RegionPopulation population; |
13 | }; |
14 | |
15 | struct RegionNameEntry |
16 | { |
17 | RegionID id; |
18 | std::string name; |
19 | }; |
20 |