#pragma once #include "olcUTIL_Geometry2D.h" struct ConnectionPoint{ geom2d::rectrect; std::string name; std::string map; std::string unlockCondition; std::arrayneighbors; //Indices into the connectionPoint array. inline ConnectionPoint(geom2d::rectrect,std::string name,std::string map,std::string unlockCondition) :rect(rect),name(name),map(map),unlockCondition(unlockCondition){ neighbors.fill(-1); } };