public Bird() : base() { flyType = new CanFly(); this.Sound = "chirp"; }
public override void AssignFlyBehavior() { flyBehavior = new CanFly(); }