| 928 | } |
| 929 | |
| 930 | int32_t AFCEntity::GetCustomInt32(const std::string& name) const |
| 931 | { |
| 932 | auto pData = custom_data_list_.find_value(name); |
| 933 | ARK_ASSERT_RET_VAL(pData != nullptr, NULL_INT); |
| 934 | |
| 935 | return pData->GetInt(); |
| 936 | } |
| 937 | |
| 938 | uint32_t AFCEntity::GetCustomUInt32(const std::string& name) const |
| 939 | { |
no test coverage detected