Skip to content
Snippets Groups Projects
Commit e115d100 authored by Yanis O's avatar Yanis O
Browse files

[Suppr] Références inutiles

parent cc93ba75
No related branches found
No related tags found
No related merge requests found
Pipeline #38958 failed
...@@ -10,16 +10,14 @@ public class FireFighter implements Entity{ ...@@ -10,16 +10,14 @@ public class FireFighter implements Entity{
private int age; private int age;
private Position position; private Position position;
private final Color viewColor = Color.BLUE; private final Color viewColor = Color.BLUE;
private Board<Entity> board;
public FireFighter(Position position, Board<Entity> b){ public FireFighter(Position position, Board<Entity> b){
this.position = position; this.position = position;
this.board = b;
this.age = 0; this.age = 0;
} }
public FireFighter(Position position, Board<Entity> b, int age){ public FireFighter(Position position, Board<Entity> b, int age){
this.position = position; this.position = position;
this.board = b;
this.age = age; this.age = age;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment