(self, window)
| 58 | self.board[row].append(0) |
| 59 | |
| 60 | def draw(self, window): |
| 61 | self.draw_cubes(window) |
| 62 | for row in range(rows): |
| 63 | for col in range(cols): |
| 64 | piece = self.board[row][col] |
| 65 | if piece != 0: |
| 66 | piece.draw(window) |
| 67 | |
| 68 | def get_valid_moves(self, piece): |
| 69 | moves = {} |
nothing calls this directly
no test coverage detected