44 lines
651 B
Java
44 lines
651 B
Java
package config;
|
|
|
|
import manager.Table;
|
|
|
|
@Table(name ="BloodyBattleTreasure")
|
|
public class SBloodyBattleTreasure implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int seasonPass;
|
|
|
|
private int type;
|
|
|
|
private int[][] seasonReward;
|
|
|
|
private int[][] seasonTokenReward;
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getSeasonPass() {
|
|
return seasonPass;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public int[][] getSeasonReward() {
|
|
return seasonReward;
|
|
}
|
|
|
|
public int[][] getSeasonTokenReward() {
|
|
return seasonTokenReward;
|
|
}
|
|
|
|
|
|
} |