diff options
author | wvpm <24685035+wvpm@users.noreply.github.com> | 2024-11-03 22:23:39 +0100 |
---|---|---|
committer | wvpm <24685035+wvpm@users.noreply.github.com> | 2024-11-03 22:39:01 +0100 |
commit | 4eba08af501560e9139a562c53fbbc8b694fb4cf (patch) | |
tree | e9553d2f4ed09abb920921006b976c7ef4baa46c /src/openvic-simulation/map/State.hpp | |
parent | 19026ff6aee8748df4777ec044065d13460e806a (diff) |
ModifierEffectCache & location to fieldsto_fields
Diffstat (limited to 'src/openvic-simulation/map/State.hpp')
-rw-r--r-- | src/openvic-simulation/map/State.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openvic-simulation/map/State.hpp b/src/openvic-simulation/map/State.hpp index e1f5953..55cd9e7 100644 --- a/src/openvic-simulation/map/State.hpp +++ b/src/openvic-simulation/map/State.hpp @@ -49,7 +49,7 @@ namespace OpenVic { std::string get_identifier() const; void update_gamestate(); - void state_tick(const Date today, ModifierEffectCache const& modifier_effect_cache); + void state_tick(const Date today); IndexedMap<PopType, std::vector<Pop*>>& get_mutable_pops_cache_by_type(); }; @@ -70,7 +70,7 @@ namespace OpenVic { size_t get_state_count() const; void update_gamestate(); - void tick(const Date today, ModifierEffectCache const& modifier_effect_cache); + void tick(const Date today); }; struct MapInstance; @@ -94,6 +94,6 @@ namespace OpenVic { void reset(); void update_gamestate(); - void tick(const Date today, ModifierEffectCache const& modifier_effect_cache); + void tick(const Date today); }; } |