Пример #1
0
 public void TransformToChild(Action <ThePrey> tfChild)
 {
     foreach (ThePrey prey in Preys)
     {
         Age age = prey.Prey.Age;
         age.AgeDown();
         if (age.AgeYears < 1)
         {
             tfChild?.Invoke(prey);
         }
     }
 }