Pop-Engine/Pop Engine/Land.h
2019-08-13 00:52:11 +08:00

24 lines
306 B
C++

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