Update des couleurs from String to boolean
This commit is contained in:
parent
48a53e34af
commit
cf88454384
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user