Pop-Engine/Pop Engine/Career.h

20 lines
188 B
C
Raw Normal View History

2019-08-12 16:25:03 +00:00
#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;
};