IAstNode.cs 213 B

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