新将来袭活动文件补充

back_recharge
duhui 2020-12-09 14:01:59 +08:00
parent 2ae47522f3
commit 97077d9557
1 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,55 @@
package config;
import manager.STableManager;
import manager.Table;
import java.util.Map;
@Table(name ="NewHeroConfig")
public class SNewHeroConfig implements BaseConfig {
private int id;
private int heroId;
private int monsterGroup;
private int[][] dropList;
private int[][] boxList;
private int[][] dropCell;
@Override
public void init() throws Exception {
}
public int getId() {
return id;
}
public int getHeroId() {
return heroId;
}
public int getMonsterGroup() {
return monsterGroup;
}
public int[][] getDropList() {
return dropList;
}
public int[][] getBoxList() {
return boxList;
}
public int[][] getDropCell() {
return dropCell;
}
}