returns how many of an type/id is in the inventory for object handle items, pass the object handle in as the type and leave id as -1
| 348 | // for object handle items, pass the object handle in as the type and leave |
| 349 | // id as -1 |
| 350 | int dInven_GetTypeIDCount(Inventory *inven, int type, int id) { return inven->GetTypeIDCount(type, id); } |
| 351 | |
| 352 | // searches the inventory for the specified type/id, sets the pos to it |
| 353 | // for object handle items, pass the object handle in as the type and leave |
nothing calls this directly
no test coverage detected