// D import file generated from 'source\ecs\entity_allocator.d' module ecs.entity_allocator; import ecs.manager; import std.experimental.allocator; import std.experimental.allocator.mallocator : AlignedMallocator, Mallocator; struct EntityAllocator { void* next_block; void* getBlock(); private void allocBlock(); }