aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs
blob: 5ececbb5e482fbec053b673b5efaff9ede58f00c (plain) (blame)
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; }
    }
}