29 lines
358 B
Java
29 lines
358 B
Java
|
package config;
|
||
|
|
||
|
|
||
|
import manager.Table;
|
||
|
|
||
|
|
||
|
|
||
|
@Table(name ="GuildBossConfig")
|
||
|
public class SGuildBossConfig implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int monsterId;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getMonsterId() {
|
||
|
return monsterId;
|
||
|
}
|
||
|
}
|