36 lines
654 B
Java
36 lines
654 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name = "OptionAddCondition")
|
||
|
public class SOptionAddCondition implements BaseConfig{
|
||
|
|
||
|
public static Map<Integer, SOptionAddCondition> sOptionAddConditionMap;
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
sOptionAddConditionMap = STableManager.getConfig(SOptionAddCondition.class);
|
||
|
}
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int type;
|
||
|
|
||
|
private int[][] values;
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public int[][] getValues() {
|
||
|
return values;
|
||
|
}
|
||
|
}
|