17 lines
342 B
C#
17 lines
342 B
C#
using Strategy_Kassabon;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pannenkoekenhuis.Decorators
|
|
{
|
|
public class Stroop : PannenkoekDecorator
|
|
{
|
|
public Stroop(Pannenkoek p) : base(p, "Stroop", 0.5)
|
|
{
|
|
}
|
|
}
|
|
}
|