Beispiel #1
0
 public void RunFoodChain()
 {
     _carnivore.Eat(_herbivore);
 }
Beispiel #2
0
 public void NutritionCarnivores(Carnivore carnivore, Herbivore herbivore)
 {
     carnivore.Eat(herbivore);
 }
Beispiel #3
0
 public void RunFoodChain()
 {
     _person.Hunt(_carnivore);
     _carnivore.Eat(_herbivore);
 }
Beispiel #4
0
 public void RunFoodChain()
 {
     _carnivore.Eat(_herbivore);
     _superPredator.Eat(_carnivore);
 }