Pop-Engine/Pop Engine/Land.h
2019-08-22 23:56:53 +08:00

28 lines
357 B
C++

#pragma once
#include <memory>
#include <string>
#include <vector>
#include "Production.h"
class Market;
class Population;
using namespace std;
class Land
{
public:
shared_ptr<Market> get_market(void);
private:
vector<unique_ptr<Population>> pops;
shared_ptr<Market> mkt;
vector<shared_ptr<Production>> pdts;
float max_pop;
string name;
};