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

19 lines
202 B
C++

#pragma once
#include <memory>
#include <vector>
#include <string>
using namespace std;
class Production
{
public:
private:
vector<shared_ptr<Production>> material;
float value;
string name;
};