示例#1
0
 public ItemType(string name, ItemType parent) : this(name, "", parent) { }
示例#2
0
 public ItemType(string name, string description, ItemType parent) : base(name, description)
 {
     ParentType = parent;
 }