Pop-Engine/Pop Engine/Production.h
2019-08-22 23:56:53 +08:00

24 lines
361 B
C++

#pragma once
#include <memory>
#include <vector>
#include <string>
using namespace std;
class Production
{
public:
float get_value(void);
string get_name(void);
private:
// Raw material to make this production.
vector<shared_ptr<Production>> material;
// Base value of this prodution.
float value;
// Name of this production.
string name;
};