diff --git a/tablemanager/src/main/java/config/SNewHeroConfig.java b/tablemanager/src/main/java/config/SNewHeroConfig.java new file mode 100644 index 000000000..747c23487 --- /dev/null +++ b/tablemanager/src/main/java/config/SNewHeroConfig.java @@ -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; + } + + +} \ No newline at end of file