Exemplo n.º 1
0
 public int GetRolesCount()
 {
     return(SubDoerUtil1.GetSubDoersCount <Role>(this.parentDoer, this.subDoerKey));
 }
Exemplo n.º 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)));
 }
Exemplo n.º 3
0
 public int GetMissionsCount()
 {
     return(SubDoerUtil1.GetSubDoersCount <Mission>(this.parentDoer, this.subDoerKey));
 }
Exemplo n.º 4
0
 public int GetEquipsCount()
 {
     return(SubDoerUtil1.GetSubDoersCount <Item>(this.parentDoer, this.subDoerKey));
 }