MemoryAllocator.cs 214 B

123456789101112
  1. using System;
  2. namespace Ryujinx.HLE.OsHle
  3. {
  4. class MemoryAllocator
  5. {
  6. public bool TryAllocate(long Size, out long Address)
  7. {
  8. throw new NotImplementedException();
  9. }
  10. }
  11. }