예제 #1
0
파일: Champion.cs 프로젝트: Ceeeeed/TFT-BOT
 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
파일: Champion.cs 프로젝트: Ceeeeed/TFT-BOT
 public Origin(int[] champValue, ChampionOrigin name)
 {
     this.champValue = champValue;
     this.name       = name;
 }