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