public override void Eat(Herbivore h) { // Eat Wildebeest Console.WriteLine(string.Format("{0} eats {1}", this, h)); }
public abstract void Eat(Herbivore h);