public MallardDuck()
 {
     flyBehavior   = new FlyWithWings();
     quackBehavior = new NormalQuack();
 }
Exemplo n.º 2
0
 public ReadheadDuck()
 {
     flyBehavior   = new FlyWithWings();
     quackBehavior = new NormalQuack();
 }
Exemplo n.º 3
0
 public ModelDuck()
 {
     flyBehavior   = new FlyNoWay();
     quackBehavior = new NormalQuack();
 }