aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/economy/production/Employee.hpp
blob: 8a09c3131e9534bdcc35011f4b32254ad1e04400 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "openvic-simulation/pop/Pop.hpp"

namespace OpenVic {
   struct Employee {
   private:
      Pop::pop_size_t PROPERTY_RW(size);
   public:
      Pop& pop;
      Employee(Pop& new_pop, const Pop::pop_size_t new_size);
   };
}