WindowsMemoryBuffer.cs 288 B

1234567891011121314151617
  1. using System;
  2. namespace BepInEx.IL2CPP
  3. {
  4. public class WindowsMemoryBuffer : MemoryBuffer
  5. {
  6. public override IntPtr Allocate(IntPtr func)
  7. {
  8. throw new NotImplementedException();
  9. }
  10. public override void Free(IntPtr buffer)
  11. {
  12. throw new NotImplementedException();
  13. }
  14. }
  15. }