resets the position pointer in the list to the beginning
| 1143 | |
| 1144 | // resets the position pointer in the list to the beginning |
| 1145 | void Inventory::ResetPos(void) { pos = root; } |
| 1146 | |
| 1147 | // moves the position pointer to the next inventory item |
| 1148 | void Inventory::NextPos(bool skip) { |
no outgoing calls
no test coverage detected