Pop-Engine/Pop Engine/Engine.h

18 lines
165 B
C
Raw Normal View History

2019-08-12 16:25:03 +00:00
#pragma once
#include <vector>
#include <memory>
#include "Market.h"
using namespace std;
class Engine
{
public:
private:
vector<shared_ptr<Market>> mkts;
};