mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-23 23:22:54 +00:00
10 lines
178 B
C#
10 lines
178 B
C#
namespace Ryujinx.Memory.Range
|
|
{
|
|
public interface IMultiRangeItem
|
|
{
|
|
MultiRange Range { get; }
|
|
|
|
ulong BaseAddress => Range.GetSubRange(0).Address;
|
|
}
|
|
}
|