diff options
author | zaaarf <80046572+zaaarf@users.noreply.github.com> | 2023-12-27 23:59:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 23:59:44 +0100 |
commit | c994cf687ee90879275f917248c0c7c2b25275e2 (patch) | |
tree | 69ac3c177a57f6091bb07e0d774151a5677dd1cb /src/openvic-simulation/map/Province.cpp | |
parent | 0d9343e62575b5b7968beea2d36f15541e2351e2 (diff) | |
parent | 3bf0ce9bfaad1e40ffeeed3d66ca2e628fea8e29 (diff) |
Merge pull request #108 from OpenVicProject/dataloading-map-climate-continent
Dataloading climate and continents
Diffstat (limited to 'src/openvic-simulation/map/Province.cpp')
-rw-r--r-- | src/openvic-simulation/map/Province.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openvic-simulation/map/Province.cpp b/src/openvic-simulation/map/Province.cpp index cb9095b..2d301e8 100644 --- a/src/openvic-simulation/map/Province.cpp +++ b/src/openvic-simulation/map/Province.cpp @@ -8,8 +8,8 @@ using namespace OpenVic::NodeTools; Province::Province( std::string_view new_identifier, colour_t new_colour, index_t new_index ) : HasIdentifierAndColour { new_identifier, new_colour, true }, index { new_index }, region { nullptr }, - on_map { false }, has_region { false }, water { false }, coastal { false }, port { false }, - default_terrain_type { nullptr }, positions {}, terrain_type { nullptr }, life_rating { 0 }, + climate { nullptr }, continent { nullptr }, on_map { false }, has_region { false }, water { false }, coastal { false }, + port { false }, default_terrain_type { nullptr }, positions {}, terrain_type { nullptr }, life_rating { 0 }, colony_status { colony_status_t::STATE }, state { nullptr }, owner { nullptr }, controller { nullptr }, slave { false }, crime { nullptr }, rgo { nullptr }, buildings { "buildings", false }, total_population { 0 } { assert(index != NULL_INDEX); |