public Zygote(Female mother, Male father) { mother_id = mother.id; father_id = father.id; id = ProgenyScenario.current.NextZygoteID(); genes = Genome.Combine(mother.genes, father.genes); init(); }