Ejemplo n.º 1
0
Row* Maze::rowAt(int y) const
{
    Row row(y);
    return rows.find(row);
}
Ejemplo n.º 2
0
Cell* Row::cellAt(int x) const 
{
    Cell cell(x);
    return cells.find(cell);
}