AstComment.cs
1 namespace Ryujinx.Graphics.Shader.StructuredIr 2 { 3 class AstComment : AstNode 4 { 5 public string Comment { get; } 6 7 public AstComment(string comment) 8 { 9 Comment = comment; 10 } 11 } 12 }
1 namespace Ryujinx.Graphics.Shader.StructuredIr 2 { 3 class AstComment : AstNode 4 { 5 public string Comment { get; } 6 7 public AstComment(string comment) 8 { 9 Comment = comment; 10 } 11 } 12 }