
public class Engine extends AutoPart {
    @Override
    protected void accept(Visitor visitor) {
        visitor.visitEngine(this);
    }
}
