Row* Maze::rowAt(int y) const { Row row(y); return rows.find(row); }
Cell* Row::cellAt(int x) const { Cell cell(x); return cells.find(cell); }