returns how many items are in the inventory
| 972 | |
| 973 | // returns how many items are in the inventory |
| 974 | int Inventory::Size(void) { |
| 975 | // mprintf(0,"Inventory System: Size\n"); |
| 976 | return count; |
| 977 | } |
| 978 | |
| 979 | // returns true if there is an item in the inventory with the given type/id |
| 980 | bool Inventory::CheckItem(int type, int id) { |
no outgoing calls
no test coverage detected