2019-03-20 14:14:56 +01:00
|
|
|
package piecesEchiquier;
|
|
|
|
|
|
|
|
public class Tour extends Piece {
|
2019-05-04 21:08:15 +02:00
|
|
|
private boolean verif=false;
|
2019-03-20 14:14:56 +01:00
|
|
|
|
2019-05-04 21:08:15 +02:00
|
|
|
public Tour(String couleur,String l, Position pos)
|
2019-04-23 17:30:04 +02:00
|
|
|
{
|
2019-05-04 21:08:15 +02:00
|
|
|
super(couleur,l,pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean aBouge()
|
|
|
|
{
|
|
|
|
if(this.getIni() != this.getPosition())
|
|
|
|
{
|
|
|
|
verif=true;
|
|
|
|
}
|
|
|
|
if(this.getIni() == this.getPosition() && verif == false)
|
|
|
|
{
|
|
|
|
verif=false;
|
|
|
|
}
|
|
|
|
return verif;
|
2019-03-20 14:14:56 +01:00
|
|
|
}
|
|
|
|
}
|