| 3 | |
| 4 | namespace ZEngine::Rendering::Entities { |
| 5 | GraphicSceneEntity::GraphicSceneEntity(entt::entity handle, Ref<entt::registry> registry_ptr) : m_entity_handle(handle), m_weak_registry_ptr(registry_ptr) {} |
| 6 | GraphicSceneEntity::GraphicSceneEntity(GraphicSceneEntity&& rhs) noexcept { |
| 7 | m_entity_handle = rhs.m_entity_handle; |
| 8 | rhs.m_weak_registry_ptr.swap(m_weak_registry_ptr); |
nothing calls this directly
no outgoing calls
no test coverage detected