forked from MeloNX/MeloNX
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; }
|
|
}
|
|
}
|