示例#1
0
 public Champion(ChampionName name, int cost, int tierList, int level, ChampionOrigin originOne, ChampionOrigin originTwo, ChampionClass classOne, ChampionClass classTwo, Item[] preferedItems, int[] prefferedPos)
 {
     this.name          = name;
     this.cost          = cost;
     this.tierList      = tierList;
     this.level         = level;
     this.originOne     = originOne;
     this.originTwo     = originTwo;
     this.classOne      = classOne;
     this.classTwo      = classTwo;
     this.preferedItems = preferedItems;
     this.prefferedPos  = prefferedPos;
 }
示例#2
0
 public Origin(int[] champValue, ChampionOrigin name)
 {
     this.champValue = champValue;
     this.name       = name;
 }