This repository has been archived on 2022-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
patterns/factorymethod/pizzasimple/clampizza.d

16 lines
395 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.clampizza;
import factorymethod.pizzasimple.pizza;
class ClamPizza : Pizza
{
this()
{
name = "Пицца с моллюсками";
dough = "Тонкая корочка";
sauce = "Белый чесночный соус";
toppings ~= "Моллюски";
toppings ~= "Тертый сыр пармезан";
}
}