diff --git a/BeefLibs/corlib/src/BumpAllocator.bf b/BeefLibs/corlib/src/BumpAllocator.bf index 30ec5062..d87cb722 100644 --- a/BeefLibs/corlib/src/BumpAllocator.bf +++ b/BeefLibs/corlib/src/BumpAllocator.bf @@ -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