Exemplo n.º 1
0
 public void OnAddedToFeat(Feat target)
 {
     Feat.AddDependent(target);
 }
Exemplo n.º 2
0
 public FeatPrereq(Feat feat)
 {
     Feat = feat;
 }
Exemplo n.º 3
0
 public void AddFeatPrereq(Feat prereqFeat)
 {
     AddPrereq(new FeatPrereq(prereqFeat));
 }
Exemplo n.º 4
0
 public void AddDependent(Feat feat)
 {
     _dependents.Add(feat);
 }
Exemplo n.º 5
0
 public void OnAddedToFeat(Feat target)
 {
 }