| 777 | } |
| 778 | |
| 779 | const char *CGameConfig::GetKeyValue(const char *key) |
| 780 | { |
| 781 | void *obj; |
| 782 | if (!sm_trie_retrieve(m_pKeys, key, &obj)) |
| 783 | { |
| 784 | return NULL; |
| 785 | } |
| 786 | return m_pStrings->GetString((int)obj); |
| 787 | } |
| 788 | |
| 789 | SendProp *CGameConfig::GetSendProp(const char *key) |
| 790 | { |
no test coverage detected