新将来袭活动文件补充
parent
2ae47522f3
commit
97077d9557
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue