Example #1
0
 public RedheadDuck()
 {
     flyBehavior   = new FlyWithWings();
     quackBehavior = new QuackNormal();
 }
Example #2
0
 public MallardDuck()
 {
     quackBehavior = new QuackNormal();
     flyBehavior   = new FlyWithWings();
 }