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

24 lines
356 B
C++

#pragma once
#include <memory>
#include <vector>
#include "Population.h"
#include "SellProduction.h"
using namespace std;
class Market
{
public:
private:
// Selling productions in the market.
vector<unique_ptr<SellProduction>> sl_pdts;
// Children markets.
vector<shared_ptr<Market>> sub_mkts;
// Parent market.
shared_ptr<Market> pae_mkts;
};