示例#1
0
文件: assign3.cpp 项目: stellalie/dsa
Cell* Maze::cellAt(int x, int y) const
{
    Row* row = rowAt(y);
    return row->cellAt(x);
}