merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
Showing only changes of commit 5b9bc7aa36 - Show all commits

View File

@@ -35,12 +35,15 @@ public class Piece {
* @param color the color of the piece * @param color the color of the piece
* @param state the state of the piece * @param state the state of the piece
*/ */
public Piece(Color color, PieceState state, int id) { public Piece(Color color, PieceState state) {
this.color = color; this.color = color;
this.state = state; this.state = state;
shield = ShieldState.NONE; shield = ShieldState.NONE;
} }
/**
* Constructor.
*/
private Piece() { private Piece() {
color = Color.NONE; color = Color.NONE;
state = PieceState.WAITING; state = PieceState.WAITING;