Pop-Engine/Pop Engine/Engine.h

22 lines
284 B
C
Raw Normal View History

2019-08-12 16:25:03 +00:00
#pragma once
#include <vector>
#include <memory>
#include "Market.h"
2019-08-12 16:52:11 +00:00
#include "Land.h"
2019-08-12 16:25:03 +00:00
using namespace std;
class Engine
{
public:
2019-08-12 16:52:11 +00:00
2019-08-12 16:25:03 +00:00
private:
2019-08-12 16:52:11 +00:00
// Manage all the markets.
2019-08-12 16:25:03 +00:00
vector<shared_ptr<Market>> mkts;
2019-08-12 16:52:11 +00:00
// Manage all the lands in the world.
vector<shared_ptr<Land>> lands;
2019-08-12 16:25:03 +00:00
};