예제 #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;
 }