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