Pop-Engine/Pop Engine/Need.h

20 lines
265 B
C
Raw Normal View History

2019-08-12 16:25:03 +00:00
#pragma once
#include <memory>
#include <vector>
#include "Production.h"
using namespace std;
class Need
{
public:
private:
vector<shared_ptr<Production>> base_pdts;
vector<shared_ptr<Production>> improve_pdts;
vector<shared_ptr<Production>> high_pdts;
};