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.
21 lines
459 B
21 lines
459 B
package engine.powers; |
|
|
|
import java.sql.ResultSet; |
|
import java.sql.SQLException; |
|
|
|
public class RunePowerEntry { |
|
|
|
public String name; |
|
public int token; |
|
public String power_type; |
|
public int rank; |
|
|
|
|
|
public RunePowerEntry(ResultSet rs) throws SQLException { |
|
this.name = rs.getString("name"); |
|
this.token = rs.getInt("token"); |
|
this.power_type = rs.getString("power_type"); |
|
this.rank = rs.getInt("rank"); |
|
} |
|
|
|
}
|
|
|