set data
| 307 | |
| 308 | // set data |
| 309 | bool AFCEntity::SetBool(const std::string& name, bool value) |
| 310 | { |
| 311 | ARK_ASSERT_RET_VAL(m_pNodeManager != nullptr, false); |
| 312 | |
| 313 | return m_pNodeManager->SetBool(name, value); |
| 314 | } |
| 315 | |
| 316 | bool AFCEntity::SetInt32(const std::string& name, const int32_t value) |
| 317 | { |
no outgoing calls
no test coverage detected