IRange.cs 253 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.Memory
  2. {
  3. /// <summary>
  4. /// Range of memory.
  5. /// </summary>
  6. interface IRange
  7. {
  8. ulong Address { get; }
  9. ulong Size { get; }
  10. bool OverlapsWith(ulong address, ulong size);
  11. }
  12. }