| 920 | } |
| 921 | |
| 922 | bool AFCEntity::GetCustomBool(const std::string& name) const |
| 923 | { |
| 924 | auto pData = custom_data_list_.find_value(name); |
| 925 | ARK_ASSERT_RET_VAL(pData != nullptr, false); |
| 926 | |
| 927 | return pData->GetBool(); |
| 928 | } |
| 929 | |
| 930 | int32_t AFCEntity::GetCustomInt32(const std::string& name) const |
| 931 | { |
nothing calls this directly
no test coverage detected