Pop-Engine/Pop Engine/Land.h

24 lines
306 B
C
Raw Normal View History

2019-08-12 16:52:11 +00:00
#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;
};