37 lines
497 B
Java
37 lines
497 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="GuildWarRewardConfig")
|
||
|
public class SGuildWarRewardConfig implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int section;
|
||
|
|
||
|
private int[][] reward;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getSection() {
|
||
|
return section;
|
||
|
}
|
||
|
|
||
|
public int[][] getReward() {
|
||
|
return reward;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|