| 477 | } |
| 478 | |
| 479 | SendProp *CHalfLife2::FindInSendTable(const char *classname, const char *offset) |
| 480 | { |
| 481 | sm_sendprop_info_t info; |
| 482 | |
| 483 | if (!FindSendPropInfo(classname, offset, &info)) |
| 484 | { |
| 485 | return NULL; |
| 486 | } |
| 487 | |
| 488 | return info.prop; |
| 489 | } |
| 490 | |
| 491 | typedescription_t *CHalfLife2::FindInDataMap(datamap_t *pMap, const char *offset) |
| 492 | { |
no test coverage detected