示例#1
0
 public void RunFoodChain()
 {
     _herbivore.Eat(_botany);
     _carnivore.Eat(_herbivore);
 }
示例#2
0
 public void RunFoodChain()
 {
     _carnivore.Eat(_herbivore);
 }