Ryujinx/src/Ryujinx.Graphics.Shader/StructuredIr/AstNode.cs
2023-04-27 23:51:14 +02:00

11 lines
No EOL
233 B
C#

using System.Collections.Generic;
namespace Ryujinx.Graphics.Shader.StructuredIr
{
class AstNode : IAstNode
{
public AstBlock Parent { get; set; }
public LinkedListNode<IAstNode> LLNode { get; set; }
}
}