Exemplo n.º 1
0
 public Boolean isSaveGameActivated() {
   return config.getServer().isSaveGameActivated();
 }
Exemplo n.º 2
0
 public String getUserNamePattern() {
   return config.getServer().getUserNamePattern();
 }
Exemplo n.º 3
0
 public String getMaxAiOpponents() {
   return config.getServer().getMaxAiOpponents();
 }
Exemplo n.º 4
0
 public int getMaxSecondsIdle() {
   return config.getServer().getMaxSecondsIdle().intValue();
 }
Exemplo n.º 5
0
 public int getMaxUserNameLength() {
   return config.getServer().getMaxUserNameLength().intValue();
 }
Exemplo n.º 6
0
 public int getPort() {
   return config.getServer().getPort().intValue();
 }
Exemplo n.º 7
0
 public int getMaxGameThreads() {
   return config.getServer().getMaxGameThreads().intValue();
 }
Exemplo n.º 8
0
 public String getServerAddress() {
   return config.getServer().getServerAddress();
 }
Exemplo n.º 9
0
 public String getServerName() {
   return config.getServer().getServerName();
 }
Exemplo n.º 10
0
 public List<Plugin> getDeckTypes() {
   return config.getDeckTypes().getDeckType();
 }
Exemplo n.º 11
0
 public List<Plugin> getDraftCubes() {
   return config.getDraftCubes().getDraftCube();
 }
Exemplo n.º 12
0
 public List<GamePlugin> getTournamentTypes() {
   return config.getTournamentTypes().getTournamentType();
 }
Exemplo n.º 13
0
 public List<GamePlugin> getGameTypes() {
   return config.getGameTypes().getGameType();
 }
Exemplo n.º 14
0
 public List<Plugin> getPlayerTypes() {
   return config.getPlayerTypes().getPlayerType();
 }