PR1/Stau/PKW.java

7 lines
103 B
Java

public class PKW extends Fahrzeug {
PKW(int pos, String fahrer){
super(pos,5, fahrer, "[X-X]");
}
}