aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs
blob: 248d8d69f35d52d58ec9d9dbfa62df03a2b8c1f3 (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; }
    }
}