Ndk/World: Fixed my stupidity
Former-commit-id: a73b8b1f4bcfc5c878df18f5f2337c8d2535fc74
This commit is contained in:
parent
446f537e3f
commit
20dda58ebc
|
|
@ -66,11 +66,12 @@ namespace Ndk
|
||||||
struct EntityBlock
|
struct EntityBlock
|
||||||
{
|
{
|
||||||
EntityBlock(Entity&& e) :
|
EntityBlock(Entity&& e) :
|
||||||
entity(std::move(e)),
|
entity(std::move(e))
|
||||||
aliveIndex(e.aliveIndex)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EntityBlock(EntityBlock&& block) = default;
|
||||||
|
|
||||||
Entity entity;
|
Entity entity;
|
||||||
unsigned int aliveIndex;
|
unsigned int aliveIndex;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue