Pop-Engine/Pop Engine/Career.h
2019-08-13 00:52:11 +08:00

22 lines
272 B
C++

#pragma once
#include <memory>
#include "Production.h"
#include "Need.h"
using namespace std;
class Career
{
public:
private:
// The prodution which this career makes.
shared_ptr<Production> pdt;
// Produtions which this career needed.
shared_ptr<Need> ned;
};