1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-28 02:26:46 -06:00

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;
}
}
}