returns the name of the item at the current position
| 1237 | |
| 1238 | // returns the name of the item at the current position |
| 1239 | char *Inventory::GetPosName(void) { |
| 1240 | if (!pos) |
| 1241 | return NULL; |
| 1242 | return pos->name; |
| 1243 | } |
| 1244 | |
| 1245 | // returns the icon name of the item at the current position |
| 1246 | char *Inventory::GetPosIconName(void) { |
no outgoing calls
no test coverage detected