Exemple #1
0
 public Item[] GetItemsOfTypes(string type1, string type2 = null)
 {
     return(SubDoerUtil2.GetSubDoers <Item>(this.parentDoer, this.subDoerKey, null,
                                            (item) => this.__FilterType(item, type1, type2)));
 }
Exemple #2
0
 public Item[] GetItems(string id = null)
 {
     return(SubDoerUtil2.GetSubDoers <Item>(this.parentDoer, this.subDoerKey, id, null));
 }