using System; namespace BepInEx.IL2CPP { /// /// Based on https://github.com/kubo/funchook /// internal class UnixPageAllocator : PageAllocator { public override IntPtr Allocate(IntPtr hint) { throw new NotImplementedException(); } public override void Free(IntPtr page) { throw new NotImplementedException(); } } }