38 lines
508 B
Java
38 lines
508 B
Java
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 {
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getMonster() {
|
|
return monster;
|
|
}
|
|
|
|
public int[][] getReward() {
|
|
return reward;
|
|
}
|
|
|
|
public int getBattleTime() {
|
|
return battleTime;
|
|
}
|
|
|
|
|
|
} |