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/pizzafactorymethod/nystyleveggiepizza.d

20 lines
436 B
D
Raw Normal View History

2022-11-12 19:47:14 +00:00
module factorymethod.pizzafactorymethod.nystyleveggiepizza;
import factorymethod.pizzafactorymethod.pizza;
class NYStyleVeggiePizza : Pizza
{
this()
{
name = "NY Style Veggie Pizza";
dough = "Thin Crust Dough";
sauce = "Marinara Sauce";
toppings ~= "Grated Reggiano Cheese";
toppings ~= "Garlic";
toppings ~= "Onion";
toppings ~= "Mushrooms";
toppings ~= "Red Pepper";
}
}