patterns/decorator/coffeewithsize/houseblend.d

17 lines
247 B
D

module decorator.coffeewithsize.houseblend;
import decorator.coffeewithsize.beverage;
class HouseBlend : Beverage
{
this()
{
description = "House Blend Coffee";
}
override double cost()
{
return .89;
}
}