| 95 | } |
| 96 | |
| 97 | void Group::FinalizeLoadedConnections() { |
| 98 | Object::FinalizeLoadedConnections(); |
| 99 | for (auto& i : children) { |
| 100 | i.direct_ptr->ReceiveObjectMessage(OBJECT_MSG::FINALIZE_LOADED_CONNECTIONS); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | bool Group::SetFromDesc(const EntityDescription& desc) { |
| 105 | bool ret = Object::SetFromDesc(desc); |
nothing calls this directly
no test coverage detected