mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-15 05:27:42 -07:00
12 lines
226 B
C#
12 lines
226 B
C#
namespace Ryujinx.Graphics.Shader.StructuredIr
|
|
{
|
|
class AstComment : AstNode
|
|
{
|
|
public string Comment { get; }
|
|
|
|
public AstComment(string comment)
|
|
{
|
|
Comment = comment;
|
|
}
|
|
}
|
|
} |