Ndk/World: Fixed my stupidity

Former-commit-id: a73b8b1f4bcfc5c878df18f5f2337c8d2535fc74
This commit is contained in:
Lynix 2015-05-10 23:46:41 +02:00
parent 446f537e3f
commit 20dda58ebc
1 changed files with 3 additions and 2 deletions

View File

@ -66,11 +66,12 @@ namespace Ndk
struct EntityBlock
{
EntityBlock(Entity&& e) :
entity(std::move(e)),
aliveIndex(e.aliveIndex)
entity(std::move(e))
{
}
EntityBlock(EntityBlock&& block) = default;
Entity entity;
unsigned int aliveIndex;
};