70 lines
1.1 KiB
Java
70 lines
1.1 KiB
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="CampTowerSetting")
|
||
|
public class SCampTowerSetting implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int timesAddPerDay;
|
||
|
|
||
|
private int timesStoreMax;
|
||
|
|
||
|
private int[][] campOpenDay;
|
||
|
|
||
|
private int[][] flashTimesPrice;
|
||
|
|
||
|
private int helpFightMax;
|
||
|
|
||
|
private int[] helpReward;
|
||
|
|
||
|
private int helpMaxTimes;
|
||
|
|
||
|
private int[] formation;
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getTimesAddPerDay() {
|
||
|
return timesAddPerDay;
|
||
|
}
|
||
|
|
||
|
public int getTimesStoreMax() {
|
||
|
return timesStoreMax;
|
||
|
}
|
||
|
|
||
|
public int[][] getCampOpenDay() {
|
||
|
return campOpenDay;
|
||
|
}
|
||
|
|
||
|
public int getHelpFightMax() {
|
||
|
return helpFightMax;
|
||
|
}
|
||
|
|
||
|
public int[] getHelpReward() {
|
||
|
return helpReward;
|
||
|
}
|
||
|
|
||
|
public int getHelpMaxTimes() {
|
||
|
return helpMaxTimes;
|
||
|
}
|
||
|
|
||
|
public int[][] getFlashTimesPrice() {
|
||
|
return flashTimesPrice;
|
||
|
}
|
||
|
|
||
|
public int[] getFormation() {
|
||
|
return formation;
|
||
|
}
|
||
|
}
|