表类提交
parent
9fa5bf9b39
commit
6e52113c19
|
|
@ -26,6 +26,22 @@ public class SGuildSetting implements BaseConfig {
|
|||
|
||||
private int beApplyLimit;
|
||||
|
||||
private int[] totemCost;
|
||||
|
||||
private int[] guildWarOpenTime;
|
||||
|
||||
private int[] prepareTime;
|
||||
|
||||
private int[] starNum;
|
||||
|
||||
private int defendNum;
|
||||
|
||||
private int attackNum;
|
||||
|
||||
private int[] buildingStar;
|
||||
|
||||
private int[][] buildingBuff;
|
||||
|
||||
public static SGuildSetting sGuildSetting;
|
||||
|
||||
|
||||
|
|
@ -71,4 +87,36 @@ public class SGuildSetting implements BaseConfig {
|
|||
public int getBeApplyLimit() {
|
||||
return beApplyLimit;
|
||||
}
|
||||
|
||||
public int[] getTotemCost() {
|
||||
return totemCost;
|
||||
}
|
||||
|
||||
public int[] getGuildWarOpenTime() {
|
||||
return guildWarOpenTime;
|
||||
}
|
||||
|
||||
public int[] getPrepareTime() {
|
||||
return prepareTime;
|
||||
}
|
||||
|
||||
public int[] getStarNum() {
|
||||
return starNum;
|
||||
}
|
||||
|
||||
public int getDefendNum() {
|
||||
return defendNum;
|
||||
}
|
||||
|
||||
public int getAttackNum() {
|
||||
return attackNum;
|
||||
}
|
||||
|
||||
public int[] getBuildingStar() {
|
||||
return buildingStar;
|
||||
}
|
||||
|
||||
public int[][] getBuildingBuff() {
|
||||
return buildingBuff;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue