| 489 | } |
| 490 | |
| 491 | typedescription_t *CHalfLife2::FindInDataMap(datamap_t *pMap, const char *offset) |
| 492 | { |
| 493 | sm_datatable_info_t dt_info; |
| 494 | |
| 495 | if (!(this->FindDataMapInfo(pMap, offset, &dt_info))) |
| 496 | { |
| 497 | return NULL; |
| 498 | } |
| 499 | |
| 500 | return dt_info.prop; |
| 501 | } |
| 502 | |
| 503 | bool CHalfLife2::FindDataMapInfo(datamap_t *pMap, const char *offset, sm_datatable_info_t *pDataTable) |
| 504 | { |
no test coverage detected