aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Cpu/LightningJit/Graph/IBlockList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Cpu/LightningJit/Graph/IBlockList.cs')
-rw-r--r--src/Ryujinx.Cpu/LightningJit/Graph/IBlockList.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Ryujinx.Cpu/LightningJit/Graph/IBlockList.cs b/src/Ryujinx.Cpu/LightningJit/Graph/IBlockList.cs
new file mode 100644
index 00000000..aeec799c
--- /dev/null
+++ b/src/Ryujinx.Cpu/LightningJit/Graph/IBlockList.cs
@@ -0,0 +1,9 @@
+namespace Ryujinx.Cpu.LightningJit.Graph
+{
+ interface IBlockList
+ {
+ int Count { get; }
+
+ IBlock this[int index] { get; }
+ }
+}