| 968 | } |
| 969 | |
| 970 | const char* AFCEntity::GetCustomString(const std::string& name) const |
| 971 | { |
| 972 | auto pData = custom_data_list_.find_value(name); |
| 973 | ARK_ASSERT_RET_VAL(pData != nullptr, NULL_STR.c_str()); |
| 974 | |
| 975 | return pData->GetString(); |
| 976 | } |
| 977 | |
| 978 | const std::wstring& AFCEntity::GetCustomWString(const std::string& name) const |
| 979 | { |
nothing calls this directly
no test coverage detected