Pop-Engine/Pop Engine/Need.h

24 lines
509 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:
2019-08-22 15:56:53 +00:00
2019-08-12 16:25:03 +00:00
private:
2019-08-12 16:52:11 +00:00
// Certain kinds of production which one of those careers need to matain their lives.
vector<pair<shared_ptr<Production>, float>> base_pdts;
// Certain kinds of production to improve their lives.
vector<pair<shared_ptr<Production>, float>> improve_pdts;
// Certain kinds of production to satisfy their lives.
vector<pair<shared_ptr<Production>, float>> high_pdts;
2019-08-12 16:25:03 +00:00
};