-added export attributes (required by windows to make DLL library, not work at now due to DMD bugs) -interface D files to import
11 lines
319 B
D
11 lines
319 B
D
// 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();
|
|
}
|