41 lines
517 B
Java
41 lines
517 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;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|