-LinearLayout implemntation:

*Entity.getComponent works
 *adding/removing objects work
 *update work
This commit is contained in:
Mergul 2018-09-26 09:02:16 +02:00
parent 535071ebb9
commit cb9bac5dde
5 changed files with 411 additions and 120 deletions

View file

@ -7,7 +7,7 @@ import std.experimental.allocator.mallocator : AlignedMallocator, Mallocator;
struct BlockAllocator(uint block_size, uint blocks_in_allocation)
{
void* next_block;
void* next_block = null;
void* getBlock()
{