Select Git revision
Forest.java
Forked from
COUETOUX Basile / FirefighterStarter
22 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Forest.java 444 B
package model.firefighter.elements;
import model.Element;
import model.firefighter.ModelElement;
import util.Position;
public class Forest extends Land {
//explanation : while reading the subject, I thought that any FIRE that was ON a ROCK took 4 turns instead of 2 (i changed slowfire into quickfire (1 turn) and did the forest);
public Forest(Position position) {
super(position);
type= ModelElement.FOREST;
}
}