9 lines
166 B
D
9 lines
166 B
D
|
module decorator.coffee.condimentdecorator;
|
||
|
|
||
|
import decorator.coffee.beverage;
|
||
|
|
||
|
abstract class CondimerDecorator : Beverage
|
||
|
{
|
||
|
override string getDescription();
|
||
|
}
|