AstComment.cs 226 B

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