returns the count of the item at the current position
| 315 | |
| 316 | // returns the count of the item at the current position |
| 317 | int dInven_GetPosCount(Inventory *inven) { return inven->GetPosCount(); } |
| 318 | |
| 319 | // returns true if the position pointer is at the begining of the inventory list |
| 320 | bool dInven_AtBeginning(Inventory *inven) { return inven->AtBeginning(); } |
nothing calls this directly
no test coverage detected