patterns/factorymethod/pizzasimple/veggiepizza.d

20 lines
645 B
D
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module factorymethod.pizzasimple.veggiepizza;
import factorymethod.pizzasimple.pizza;
class VeggiePizza : Pizza
{
this()
{
name = "Вегетарианская пицца";
dough = "Корка";
sauce = "Соус Маринара";
toppings ~= "Тертая моцарелла";
toppings ~= "Тертый пармезан";
toppings ~= "Нарезанный кубиками лук";
toppings ~= "Нарезанные грибы";
toppings ~= "Нарезанный красный перец";
toppings ~= "Нарезанные черные оливки";
}
}