Beispiel #1
0
 public int GetRolesCount()
 {
     return(SubDoerUtil1.GetSubDoersCount <Role>(this.parentDoer, this.subDoerKey));
 }
Beispiel #2
0
 //是否有指定种类装备
 public int GetEquipsCountOfTypes(string type1, string type2 = null)
 {
     return(SubDoerUtil1.GetSubDoersCount <Item>(this.parentDoer, this.subDoerKey, null,
                                                 (equip) => this.__FilterType(equip, type1, type2)));
 }
Beispiel #3
0
 public int GetMissionsCount()
 {
     return(SubDoerUtil1.GetSubDoersCount <Mission>(this.parentDoer, this.subDoerKey));
 }
Beispiel #4
0
 public int GetEquipsCount()
 {
     return(SubDoerUtil1.GetSubDoersCount <Item>(this.parentDoer, this.subDoerKey));
 }