22 lines
272 B
C++
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;
|
|
|
|
};
|
|
|