diff options
Diffstat (limited to 'src/openvic-simulation/country')
-rw-r--r-- | src/openvic-simulation/country/Country.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/openvic-simulation/country/Country.hpp b/src/openvic-simulation/country/Country.hpp index 5b5c528..5d25b33 100644 --- a/src/openvic-simulation/country/Country.hpp +++ b/src/openvic-simulation/country/Country.hpp @@ -60,7 +60,7 @@ namespace OpenVic { */ IdentifierRegistry<CountryParty> parties; const unit_names_map_t PROPERTY(unit_names); - const bool PROPERTY_CUSTOM_NAME(dynamic_tag, is_dynamic_tag); + const bool PROPERTY_CUSTOM_PREFIX(dynamic_tag, is); const government_colour_map_t PROPERTY(alternative_colours); Country( @@ -73,6 +73,8 @@ namespace OpenVic { Country(Country&&) = default; IDENTIFIER_REGISTRY_ACCESSORS_CUSTOM_PLURAL(party, parties) + + // TODO - get_colour including alternative colours }; struct CountryManager { |