Example #1
0
 public TES5InheritanceItem(string name, IEnumerable <TES5InheritanceItem> items)
 {
     this.Name  = name;
     this.Items = new TES5InheritanceItemCollection(items);
 }
Example #2
0
 public TES5InheritanceItem(TES5BasicType?parentType, IEnumerable <TES5InheritanceItem> items)
 {
     this.ParentType = parentType;
     this.Items      = new TES5InheritanceItemCollection(items);
 }