| 960 | } |
| 961 | |
| 962 | double AFCEntity::GetCustomDouble(const std::string& name) const |
| 963 | { |
| 964 | auto pData = custom_data_list_.find_value(name); |
| 965 | ARK_ASSERT_RET_VAL(pData != nullptr, NULL_DOUBLE); |
| 966 | |
| 967 | return pData->GetDouble(); |
| 968 | } |
| 969 | |
| 970 | const char* AFCEntity::GetCustomString(const std::string& name) const |
| 971 | { |
nothing calls this directly
no test coverage detected