37 lines
503 B
Java
37 lines
503 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="RaceTowerRewardConfig")
|
||
|
public class SRaceTowerRewardConfig 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;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|