1 | #pragma once |
---|---|
2 | |
3 | #include <common/Types.h> |
4 | |
5 | |
6 | using RegionID = UInt32; |
7 | using RegionDepth = UInt8; |
8 | using RegionPopulation = UInt32; |
9 | |
10 | enum class RegionType : Int8 |
11 | { |
12 | Hidden = -1, |
13 | Continent = 1, |
14 | Country = 3, |
15 | District = 4, |
16 | Area = 5, |
17 | City = 6, |
18 | }; |
19 |