Update des couleurs from String to boolean

This commit is contained in:
Jose Srifi 2019-04-02 17:13:37 +02:00
parent 48a53e34af
commit cf88454384
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ package piecesEchiquier;
public class Cavalier extends Piece {
public Cavalier(String c, String emp,char l)
public Cavalier(boolean c, String emp,char l)
{
super(c, emp,l);
}

View File

@ -2,7 +2,7 @@ package piecesEchiquier;
public class Fou extends Piece {
public Fou(String c, String emp,char l) {
public Fou(boolean c, String emp,char l) {
super(c, emp,l);
}

View File

@ -2,7 +2,7 @@ package piecesEchiquier;
public class Reine extends Piece {
public Reine(String c, String emp,char l) {
public Reine(boolean c, String emp,char l) {
super(c, emp,l);
}
}