31 lines
454 B
Java
31 lines
454 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="GodHoodTreeSetting")
|
||
|
public class SGodHoodTreeSetting implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int[][] propertyUnlcokLevels;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int[][] getPropertyUnlcokLevels() {
|
||
|
return propertyUnlcokLevels;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|