No longer ignoring .png files, thanks Mario.

This commit is contained in:
Woody Folsom
2012-04-19 20:55:22 -04:00
parent d9ec72d0fb
commit 10f43ee31c
9 changed files with 8 additions and 13 deletions

View File

@@ -18,7 +18,8 @@ public class Board {
private int numPlies = 0;
public Board(Board that) {
this();
board = new TileColor[NUM_ROWS][NUM_COLS];
for (int i = 0; i < NUM_COLS; i++) {
for (int j = 0; j < NUM_ROWS; j++) {
this.board[j][i] = that.board[j][i];