Exemplo n.º 1
0
        public void SetMother(TalentSpeaking talent, bool value)
        {
            MotherDicionary.Remove(talent);

            if (value)
            {
                MotherDicionary.Add(talent, value);
            }
        }
Exemplo n.º 2
0
 public bool GetMother(TalentSpeaking talent)
 {
     MotherDicionary.TryGetValue(talent, out bool value);
     return(value);
 }