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

20 lines
188 B
C++

#pragma once
#include <memory>
#include "Production.h"
#include "Need.h"
using namespace std;
class Career
{
public:
private:
shared_ptr<Production> pdt;
shared_ptr<Need> ned;
};