private void CurrentPregnant_onPregnantComplete(Pregnant pregnant, bool succeeded)
 {
     if (succeeded)
     {
         Human h = faction.createHuman(RandomGenerator.getRandomName(pregnant.isMale), pregnant.endDate, pregnant.isMale);
         h.parentFamily = family;
         family.childs.Add(h);
     }
 }
 public void createPregnant()
 {
     currentPregnant = new Pregnant(this);
     currentPregnant.onPregnantComplete += CurrentPregnant_onPregnantComplete;
 }