Skip to content

Commit

Permalink
eclipse is crazy
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron committed Mar 28, 2016
1 parent c9c4c2b commit 565cb52
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 0 deletions.
Empty file modified .classpath
100644 → 100755
Empty file.
Empty file modified .project
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
12 changes: 12 additions & 0 deletions src/model/Board.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package model;

public class Board {
private final int BOARD_SIZE = 8;
private Piece[][] representation;
private int movesSinceCapture;

public Board() {
representation = new Piece[BOARD_SIZE][BOARD_SIZE];
}

}
Empty file modified src/model/Color.java
100644 → 100755
Empty file.
Empty file modified src/model/Piece.java
100644 → 100755
Empty file.
Empty file modified src/model/Type.java
100644 → 100755
Empty file.

0 comments on commit 565cb52

Please sign in to comment.