示例#1
0
 protected void SetPrey(Herbivore preyToHunt)
 {
     if (prey == null)
     {
         prey = preyToHunt;
         prey.SetHunter(this);
     }
 }