public class Car extends Vehicle { // --------------------------------------------------------- constructor public Car(color myColor, int xOriginPoint, int yOriginPoint, int direction) { super(2, myColor, xOriginPoint, yOriginPoint, direction); } }