Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
eclipse is crazy
  • Loading branch information
Ayamin committed Mar 28, 2016
1 parent feaa10c commit e3518ab
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
@@ -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 e3518ab

Please sign in to comment.