| 1354 | } |
| 1355 | |
| 1356 | EntityPtr WorldClient::entity(EntityId entityId) const { |
| 1357 | if (!inWorld()) |
| 1358 | return {}; |
| 1359 | |
| 1360 | return m_entityMap->entity(entityId); |
| 1361 | } |
| 1362 | |
| 1363 | void WorldClient::addEntity(EntityPtr const& entity, EntityId entityId) { |
| 1364 | if (!entity) |
no outgoing calls
no test coverage detected