Ryujinx/Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs

12 lines
239 B
C#
Raw Normal View History

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