class FreeAlloc

Free allocator with no limitations, using traditional malloc/free under the hood.

Public

Methods

Alloc

u8 *Alloc(u32 amount)

Allocates memory.

Free

void Free(void *data)

Deallocates a previously allocated piece of memory.

Clear

void Clear()

Unused