mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-04-24 22:50:16 -05:00
12 lines
244 B
C#
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;
|
|
}
|
|
}
|
|
} |