From 1c0505e4b5952c9480fb802b3e2d2bfa9ddb4951 Mon Sep 17 00:00:00 2001 From: wvpm <24685035+wvpm@users.noreply.github.com> Date: Tue, 9 Jan 2024 23:11:16 +0100 Subject: Added producer types --- src/openvic-simulation/economy/ArtisanalProducer.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/openvic-simulation/economy/ArtisanalProducer.cpp (limited to 'src/openvic-simulation/economy/ArtisanalProducer.cpp') diff --git a/src/openvic-simulation/economy/ArtisanalProducer.cpp b/src/openvic-simulation/economy/ArtisanalProducer.cpp new file mode 100644 index 0000000..52cfa4f --- /dev/null +++ b/src/openvic-simulation/economy/ArtisanalProducer.cpp @@ -0,0 +1,10 @@ +#include "ArtisanalProducer.hpp" + +using namespace OpenVic; + +ArtisanalProducer::ArtisanalProducer( + ProductionType const& new_production_type, Good::good_map_t&& new_stockpile, const fixed_point_t new_current_production, + Good::good_map_t&& new_current_needs +) + : production_type { new_production_type }, stockpile { std::move(new_stockpile) }, + current_production { new_current_production }, current_needs { std::move(new_current_needs) } {} -- cgit v1.2.3-56-ga3b1