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

12 lines
No EOL
226 B
C#

namespace Ryujinx.Graphics.Shader.StructuredIr
{
class AstComment : AstNode
{
public string Comment { get; }
public AstComment(string comment)
{
Comment = comment;
}
}
}