Example #1
0
 public Cell GetCell(CellLocation location)
 {
     return(_grid[location.rowIndex, location.columnIndex]);
 }
Example #2
0
 internal void MakeMark(CellLocation location, Cell mark)
 {
     _grid[location.rowIndex, location.columnIndex] = mark;
     numberOfEmptyCells--;
 }