diff --git a/.classpath b/.classpath old mode 100644 new mode 100755 diff --git a/.project b/.project old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/src/model/Board.java b/src/model/Board.java new file mode 100755 index 0000000..0ac97d6 --- /dev/null +++ b/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]; + } + +} diff --git a/src/model/Color.java b/src/model/Color.java old mode 100644 new mode 100755 diff --git a/src/model/Piece.java b/src/model/Piece.java old mode 100644 new mode 100755 diff --git a/src/model/Type.java b/src/model/Type.java old mode 100644 new mode 100755