37 lines
547 B
Java
37 lines
547 B
Java
|
package config;
|
||
|
|
||
|
import manager.Table;
|
||
|
|
||
|
@Table(name ="ArenaRobotSetting")
|
||
|
public class SArenaRobotSetting implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int playerScoreMax;
|
||
|
|
||
|
private int playerScoreMin;
|
||
|
|
||
|
private int pool;
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
}
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getPlayerScoreMax() {
|
||
|
return playerScoreMax;
|
||
|
}
|
||
|
|
||
|
public int getPlayerScoreMin() {
|
||
|
return playerScoreMin;
|
||
|
}
|
||
|
|
||
|
public int getPool() {
|
||
|
return pool;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|