6b23a2c1 ^
1 2 3 4 5 6 7 8 9 10 11
using System.Collections.Generic; namespace Ryujinx.Graphics.Shader.StructuredIr { interface IAstNode { AstBlock Parent { get; set; } LinkedListNode<IAstNode> LLNode { get; set; } } }