using System; namespace BepInEx.IL2CPP { /// /// Based on https://github.com/kubo/funchook /// internal class UnixMemoryAllocator : MemoryAllocator { public override IntPtr Allocate(IntPtr func) { throw new NotImplementedException(); } public override void Free(IntPtr buffer) { throw new NotImplementedException(); } } }