| 944 | } |
| 945 | |
| 946 | int64_t AFCEntity::GetCustomInt64(const std::string& name) const |
| 947 | { |
| 948 | auto pData = custom_data_list_.find_value(name); |
| 949 | ARK_ASSERT_RET_VAL(pData != nullptr, NULL_INT); |
| 950 | |
| 951 | return pData->GetInt64(); |
| 952 | } |
| 953 | |
| 954 | float AFCEntity::GetCustomFloat(const std::string& name) const |
| 955 | { |
nothing calls this directly
no test coverage detected