| 952 | } |
| 953 | |
| 954 | float AFCEntity::GetCustomFloat(const std::string& name) const |
| 955 | { |
| 956 | auto pData = custom_data_list_.find_value(name); |
| 957 | ARK_ASSERT_RET_VAL(pData != nullptr, NULL_FLOAT); |
| 958 | |
| 959 | return pData->GetFloat(); |
| 960 | } |
| 961 | |
| 962 | double AFCEntity::GetCustomDouble(const std::string& name) const |
| 963 | { |
nothing calls this directly
no test coverage detected