public void Add(TES5BasicType parentType, IEnumerable <TES5InheritanceItem> items)
 {
     Add(new TES5InheritanceItem(parentType, items));
 }
 public void Add(TES5BasicType parentType)
 {
     Add(new TES5InheritanceItem(parentType));
 }
Пример #3
0
 public TES5InheritanceItem(TES5BasicType parentType)
     : this(parentType, new TES5InheritanceItem[] { })
 {
 }