config提交

back_recharge
duhui 2020-12-22 17:40:15 +08:00
parent c1fcfcf3a2
commit 2e851c83ae
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;
}
}