Pop-Engine/Pop Engine/Population.h

27 lines
329 B
C
Raw Normal View History

2019-08-12 16:25:03 +00:00
#pragma once
#include <memory>
#include "Career.h"
#include "Market.h"
using namespace std;
class Population
{
public:
void work(void);
void sell(void);
void tax(void);
void buy(void);
void move(void);
void increase(void);
private:
shared_ptr<Career> career;
shared_ptr<Market> market;
float pop;
float money;
};