diff options
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); }; } |