42 lines
643 B
Java
42 lines
643 B
Java
package config;
|
|
|
|
import manager.Table;
|
|
|
|
@Table(name="EndlessDifficulty")
|
|
public class SEndlessDifficulty implements BaseConfig{
|
|
private int id;
|
|
|
|
private int[] worldLevel;
|
|
|
|
private int[] monsterId;
|
|
|
|
private int[] rewardId;
|
|
|
|
private int mapPool;
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int[] getWorldLevel() {
|
|
return worldLevel;
|
|
}
|
|
|
|
public int[] getMonsterId() {
|
|
return monsterId;
|
|
}
|
|
|
|
public int[] getRewardId() {
|
|
return rewardId;
|
|
}
|
|
|
|
public int getMapPool() {
|
|
return mapPool;
|
|
}
|
|
}
|