Support for loading of skill adjustment map.

This commit is contained in:
2023-09-03 08:18:48 -04:00
parent 90cbe90492
commit 60fb2571a2
5 changed files with 108 additions and 48 deletions
@@ -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");
}
}