#include "level.h" Level::Level() {} void Level::placeBridge(coordinate x, coordinate y) { map[x][y] = std::make_unique(x, y, sf::Color::Black); } void Level::removeCharge(coordinate x, coordinate y) { map[x][y] = std::make_unique(x, y /* Brown Color */); } Map& Level::mapArray() { return map; }