forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
471 B
22 lines
471 B
1 year ago
|
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");
|
||
|
}
|
||
|
|
||
|
}
|