This repository has been archived on 2026-01-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ryubing/Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs

12 lines
244 B
C#

namespace Ryujinx.Graphics.Gal.Shader
{
class ShaderIrCmnt : ShaderIrNode
{
public string Comment { get; private set; }
public ShaderIrCmnt(string Comment)
{
this.Comment = Comment;
}
}
}