(final int row, final int col)
| 72 | } |
| 73 | |
| 74 | public boolean isEmpty(final int row, final int col) { |
| 75 | return pieces.get(Cell.get(row, col)) == null; |
| 76 | } |
| 77 | |
| 78 | public Piece getPiece(final int row, final int col) { |
| 79 | return pieces.get(Cell.get(row, col)); |