MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / GetCustomInt64

Method GetCustomInt64

src/plugin/kernel/src/AFCEntity.cpp:946–952  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

944}
945
946int64_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
954float AFCEntity::GetCustomFloat(const std::string& name) const
955{

Callers

nothing calls this directly

Calls 2

find_valueMethod · 0.45
GetInt64Method · 0.45

Tested by

no test coverage detected