Example #1
0
 public MarriedCouple(Royalty husband, Royalty wife)
 {
     this.husband              = husband;
     this.wife                 = wife;
     this.chanceForPregnancy   = 0.5f;
     this.weeksDueForPregnancy = 36;
     pregnancyActions         += WaitForBirth;
 }
    void Awake()
    {
        Instance = this;
//		marriageEvents += CheckForMarriage;
        marriageEvents += CheckForPregnancy;
    }