1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Moving IRawAllocator

This commit is contained in:
Brian Fiete 2020-06-16 10:34:09 -07:00
parent 1a64a87cc6
commit e1559b5686

View file

@ -2,12 +2,6 @@ using System.Collections;
namespace System
{
interface IRawAllocator
{
void* Alloc(int size, int align);
void Free(void* ptr);
}
class BumpAllocator : IRawAllocator
{
struct DtorEntry