Returns the PCClassLevel object associated with the Player Character represented by the given CharID, the given PCClass, and the given (numeric) class level. @param id The CharID representing the Player Character for which the associated PCClassLevel will be returned @param ob
(CharID id, PCClass obj, int level)
| 124 | * (numeric) class level. |
| 125 | */ |
| 126 | public PCClassLevel getClassLevel(CharID id, PCClass obj, int level) |
| 127 | { |
| 128 | ClassInfo info = getClassInfo(id); |
| 129 | if (info == null) |
| 130 | { |
| 131 | return null; |
| 132 | } |
| 133 | return info.getClassLevel(obj, level); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Remove the given PCClass from the list of PCClass objects stored in this |
nothing calls this directly
no test coverage detected