Exemple #1
0
 public NorthWildDuck(string duckType, string color, IFlyableBehaviour flyable) : base(duckType, color, flyable)
 {
 }
Exemple #2
0
 public RedheadDuck(string duckType, string color, IFlyableBehaviour flyable) : base(duckType, color, flyable)
 {
 }
Exemple #3
0
 public MallabuDuck(string duckType, string color, IFlyableBehaviour flyable) : base(duckType, color, flyable)
 {
 }
Exemple #4
0
 protected Duck(string duckType, string color, IFlyableBehaviour flyable)
 {
     Flyable  = flyable;
     DuckType = duckType;
     Color    = color;
 }