mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-30 02:33:06 +01:00
10 lines
150 B
C#
10 lines
150 B
C#
|
namespace Ryujinx.Cpu.LightningJit.Graph
|
||
|
{
|
||
|
interface IBlockList
|
||
|
{
|
||
|
int Count { get; }
|
||
|
|
||
|
IBlock this[int index] { get; }
|
||
|
}
|
||
|
}
|