package BridgePres;

public class Bicycle extends Bike {
    public Bicycle(BikeImpl bike_format) {
        super(bike_format);
    }

    @Override
    public void startRiding() {
        System.out.println(">> Getting bicycle ready ::");
        bike_format.getBikeReady();
        System.out.println("Hands on the handles, feet on the pedals - let's go!\n");
    }
}
