31 lines
416 B
Java
31 lines
416 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="WeekRewardConfig")
|
||
|
public class SWeekRewardConfig implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int[] baseReward;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int[] getBaseReward() {
|
||
|
return baseReward;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|