package BridgePres;

public class PersonalBike implements BikeImpl {

    @Override
    public void getBikeReady() {
        System.out.println("Down in your basement there is a fancy" +
                " bike locked. You unlock it.\n");
    }
}
