43 lines
540 B
Java
43 lines
540 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="HeroSacrifice")
|
|
public class SHeroSacrifice implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int type;
|
|
|
|
private int key;
|
|
|
|
private int[][] value;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public int getKey() {
|
|
return key;
|
|
}
|
|
|
|
public int[][] getValue() {
|
|
return value;
|
|
}
|
|
|
|
|
|
} |