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