diff options
author | zaaarf <zaaarf@proton.me> | 2023-09-28 15:40:34 +0200 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-09-28 15:40:34 +0200 |
commit | c541a249247b7fe3bdd4c62bce6638e875790f8a (patch) | |
tree | 8fe3545142245d287839728e561d3131fcc30157 /src/openvic-simulation/economy | |
parent | 7a8ac1cdb8e71a4166393ac06b1b60512db0ef8c (diff) |
feat: implemented building loading and missing parameters
Diffstat (limited to 'src/openvic-simulation/economy')
-rw-r--r-- | src/openvic-simulation/economy/ProductionType.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/openvic-simulation/economy/ProductionType.hpp b/src/openvic-simulation/economy/ProductionType.hpp index 50af41e..57d04ea 100644 --- a/src/openvic-simulation/economy/ProductionType.hpp +++ b/src/openvic-simulation/economy/ProductionType.hpp @@ -58,16 +58,16 @@ namespace OpenVic { } type; const Pop::pop_size_t workforce; - const std::map<Good const*, fixed_point_t> input_goods; // farms generally lack this + const std::map<Good const*, fixed_point_t> input_goods; Good const* output_goods; const fixed_point_t value; - const std::vector<Bonus> bonuses; // some + const std::vector<Bonus> bonuses; - const std::map<Good const*, fixed_point_t> efficiency; // some - const bool coastal; // is_coastal some(false) + const std::map<Good const*, fixed_point_t> efficiency; + const bool coastal; // is_coastal - const bool farm; // some (false) - const bool mine; // some (false) + const bool farm; + const bool mine; ProductionType(PRODUCTION_TYPE_ARGS(type_t, Good const*)); |