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