miduo_server/tablemanager/src/main/java/config/SExploreEvent.java

55 lines
831 B
Java

package config;
import manager.STableManager;
import manager.Table;
import java.util.Map;
@Table(name ="ExploreEvent")
public class SExploreEvent implements BaseConfig {
private int id;
private int type;
private int time;
private int monsterGroup;
private int forceRange;
private int rewardGroup;
@Override
public void init() throws Exception {
Map<Integer, SExploreEvent> exploreEventConfig = STableManager.getConfig(SExploreEvent.class);
}
public int getId() {
return id;
}
public int getType() {
return type;
}
public int getTime() {
return time;
}
public int getMonsterGroup() {
return monsterGroup;
}
public int getForceRange() {
return forceRange;
}
public int getRewardGroup() {
return rewardGroup;
}
}