// // Created by jovian on 18/08/17. // #ifndef SPACEEXPANSION_PEOPLEGROWTH_H #define SPACEEXPANSION_PEOPLEGROWTH_H #include "PlanetStep.h" class PeopleExpGrowth : public PlanetStep { // Method public: PeopleExpGrowth(int delay = 100, int divisor = 1000); void apply(PlanetDef &def) override; // Attributes private: const int m_divisor; }; #endif //SPACEEXPANSION_PEOPLEGROWTH_H