Hajj-simulation/src/Sedan.java

23 lines
730 B
Java
Raw Normal View History

import java.util.Date;
2020-10-09 21:58:00 +02:00
public class Sedan extends Vehicle implements Breakable {
private final int TIME_TO_FIX = 15; //in minutes
private boolean broken;
private boolean accident;
public Sedan(double vehicleSize, boolean govtCar){
super(vehicleSize, govtCar, 4);
2020-10-09 21:58:00 +02:00
}
public boolean isBroken(){ return broken; }
public boolean isInAccident(){ return accident; }
public void _break(Date time) { this.broken = true; } //TODO
public void collide(Breakable car, Date time) { this.accident = true; }//TODO //Maybe add time of accident and other breakable args
2020-10-09 21:58:00 +02:00
public int getTimeToFix(){ return TIME_TO_FIX; }
public void fixed() { this.broken = false; this.accident = false; }
}