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

22 lines
284 B
C++

#pragma once
#include <vector>
#include <memory>
#include "Market.h"
#include "Land.h"
using namespace std;
class Engine
{
public:
private:
// Manage all the markets.
vector<shared_ptr<Market>> mkts;
// Manage all the lands in the world.
vector<shared_ptr<Land>> lands;
};