Pop-Engine/Pop Engine/Production.h

19 lines
202 B
C
Raw Normal View History

2019-08-12 16:25:03 +00:00
#pragma once
#include <memory>
#include <vector>
#include <string>
using namespace std;
class Production
{
public:
private:
vector<shared_ptr<Production>> material;
float value;
string name;
};