Sdk/Entity: Fix move constructor

Former-commit-id: 92d28b142cf1572fef3a608cb63f0f72d1539bce
This commit is contained in:
Lynix 2016-01-08 01:29:37 +01:00
parent bbaa328530
commit 9fa8255de0
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ namespace Ndk
m_systemBits(std::move(entity.m_systemBits)),
m_id(entity.m_id),
m_world(entity.m_world),
m_enabled(entity.m_enabled),
m_valid(entity.m_valid)
{
for (EntityHandle* handle : m_handles)