Pop-Engine/Pop Engine/Career.h
2019-08-22 23:56:53 +08:00

23 lines
321 B
C++

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