| 314 | } |
| 315 | |
| 316 | bool AFCEntity::SetInt32(const std::string& name, const int32_t value) |
| 317 | { |
| 318 | ARK_ASSERT_RET_VAL(m_pNodeManager != nullptr, false); |
| 319 | |
| 320 | return m_pNodeManager->SetInt32(name, value); |
| 321 | } |
| 322 | |
| 323 | bool AFCEntity::SetUInt32(const std::string& name, const uint32_t value) |
| 324 | { |
nothing calls this directly
no outgoing calls
no test coverage detected