40 lines
594 B
Java
40 lines
594 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="CombatControl")
|
|
public class SCombatControl implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int keyFrame;
|
|
|
|
private int skillDuration;
|
|
|
|
private int skillNumber;
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getKeyFrame() {
|
|
return keyFrame;
|
|
}
|
|
|
|
public int getSkillDuration() {
|
|
return skillDuration;
|
|
}
|
|
|
|
public int getSkillNumber() {
|
|
return skillNumber;
|
|
}
|
|
} |