| 14 | } |
| 15 | |
| 16 | uint8_t CSkillGroupObject::GetItem(intptr_t index) |
| 17 | { |
| 18 | if (index < 0 || index >= Count) |
| 19 | { |
| 20 | return 0xFF; |
| 21 | } |
| 22 | |
| 23 | return m_Items[index]; |
| 24 | } |
| 25 | |
| 26 | void CSkillGroupObject::Add(uint8_t index) |
| 27 | { |
no outgoing calls
no test coverage detected