1234567891011121314151617 |
- using System;
- namespace BepInEx.IL2CPP
- {
- public class WindowsMemoryBuffer : MemoryBuffer
- {
- public override IntPtr Allocate(IntPtr func)
- {
- throw new NotImplementedException();
- }
- public override void Free(IntPtr buffer)
- {
- throw new NotImplementedException();
- }
- }
- }
|