34 lines
450 B
Java
34 lines
450 B
Java
|
package config;
|
||
|
|
||
|
import manager.Table;
|
||
|
|
||
|
@Table(name ="ArenaBattleReward")
|
||
|
public class SArenaBattleReward implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int battleTimes;
|
||
|
|
||
|
private int[][] reward;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getBattleTimes() {
|
||
|
return battleTimes;
|
||
|
}
|
||
|
|
||
|
public int[][] getReward() {
|
||
|
return reward;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|