public class Drink implements DrinkItem {
    private String drinkType;
    private double drinkCost;
    
    public Drink(String type, double cost) {
        drinkType = type;
        drinkCost = cost;
    } // end Drink
    
    public double getCost() {
        return drinkCost;
    }
    
    public String getDescription() {
        return drinkType;
    }
    
}

