public void RunFoodChain()
 {
     _carnivore.Eat(_herbivore);
 }
Esempio n. 2
0
 public bool FoodChain()
 {
     return(carnivore.Eat(herbivore));
 }