Pop-Engine/Pop Engine/Need.h
2019-08-13 00:25:03 +08:00

20 lines
265 B
C++

#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;
};