forked from MagicBane/Server
Support for loading of skill adjustment map.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package engine.powers;
|
||||
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
|
||||
public class RuneSkillAdjustEntry {
|
||||
|
||||
public String name;
|
||||
public int token;
|
||||
public String skill_type;
|
||||
public int rank;
|
||||
|
||||
|
||||
public RuneSkillAdjustEntry(ResultSet rs) throws SQLException {
|
||||
this.name = rs.getString("name");
|
||||
this.token = rs.getInt("token");
|
||||
this.skill_type = rs.getString("skill_type");
|
||||
this.rank = rs.getInt("rank");
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user