blob: c667aac9888c14cc4bad4a0898de98fabcd0979c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Collections.Generic;
namespace Ryujinx.Graphics.Shader.StructuredIr
{
class AstNode : IAstNode
{
public AstBlock Parent { get; set; }
public LinkedListNode<IAstNode> LLNode { get; set; }
}
}
|