Skip to content

Commit

Permalink
#29 suppression de fonction de test inutilisée
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidForlen committed Feb 7, 2021
1 parent 986d1a9 commit 8e36841
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/games/paperDino/Cell.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,6 @@ public boolean isWalkable(){
return true;
}

/**
* @return S'il est possible de marcher sur la cellule. Il suffit d'une piece non walkable pour rendre une cellule non walkable.
*/
public boolean isWalkable(Dino dino){
for (Piece piece : this.pieces) {
if (!piece.isWalkable()){
if(piece.getEntity() instanceof StationaryEntity || piece.getEntity().getClass().equals(dino.getClass())){ // Si l'obstacle est statique ou de même type que le dino voulant faire le déplacement, on ne peut pas marcher dessus
return false;
}
}
}
return true;
}

public List<Piece> getPieces() {
return this.pieces;
}
Expand Down

0 comments on commit 8e36841

Please sign in to comment.