diff options
Diffstat (limited to 'src/openvic-simulation/economy/production/Employee.cpp')
-rw-r--r-- | src/openvic-simulation/economy/production/Employee.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/openvic-simulation/economy/production/Employee.cpp b/src/openvic-simulation/economy/production/Employee.cpp new file mode 100644 index 0000000..569299a --- /dev/null +++ b/src/openvic-simulation/economy/production/Employee.cpp @@ -0,0 +1,8 @@ +#include "Employee.hpp" + +using namespace OpenVic; + +Employee::Employee(Pop& new_pop, const Pop::pop_size_t new_size) + : pop { new_pop }, + size { new_size } + {}
\ No newline at end of file |