27 lines
338 B
Java
27 lines
338 B
Java
|
package config;
|
||
|
|
||
|
import manager.Table;
|
||
|
|
||
|
@Table(name ="BloodyBattleReward")
|
||
|
public class SBloodyBattleReward implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int score;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getScore() {
|
||
|
return score;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|