IRange.cs 194 B

12345678910
  1. namespace Ryujinx.Graphics.Gpu.Memory
  2. {
  3. interface IRange<T>
  4. {
  5. ulong Address { get; }
  6. ulong Size { get; }
  7. bool OverlapsWith(ulong address, ulong size);
  8. }
  9. }