package entities;
public class Clear {
private Position position;
public Clear(Position position) {
this.position = position;
}
public boolean getClear() {
boolean temp_l4;
if ((this.position.getValue().getFirst() > 100.0)) {
temp_l4 = true;
} else {
temp_l4 = false;
}
return temp_l4;
}
}