Skip to content
Snippets Groups Projects
Commit c8919c97 authored by ousseyn01's avatar ousseyn01
Browse files

Rocaille.java is CREATED and DONE

parent 03a673c4
No related branches found
No related tags found
No related merge requests found
package model;
import util.Position;
public class Rocaille implements TerrainElement {
private final Position position;
public Rocaille(Position position) {
this.position = position;
}
@Override
public Position getPosition() {
return position;
}
@Override
public boolean isTraversableByFirefighter() {
return true;
}
@Override
public int getFirePropagationDelay() {
return 4; // 4 tours pour que le feu se propage
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment