2019-09-06 11:04:28 +08:00
|
|
|
package config;
|
|
|
|
|
|
|
|
import manager.Table;
|
|
|
|
|
|
|
|
@Table(name ="FloodConfig")
|
|
|
|
public class SFloodConfig implements BaseConfig {
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
|
|
|
private int monster;
|
|
|
|
|
|
|
|
private int[][] reward;
|
|
|
|
|
|
|
|
private int battleTime;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
public int getId() {
|
2019-09-06 11:04:28 +08:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getMonster() {
|
|
|
|
return monster;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getReward() {
|
|
|
|
return reward;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getBattleTime() {
|
|
|
|
return battleTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|