diff options
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs')
| -rw-r--r-- | Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs new file mode 100644 index 00000000..03031ec5 --- /dev/null +++ b/Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs @@ -0,0 +1,12 @@ +namespace Ryujinx.Graphics.Gal.Shader +{ + class ShaderIrCmnt : ShaderIrNode + { + public string Comment { get; private set; } + + public ShaderIrCmnt(string Comment) + { + this.Comment = Comment; + } + } +}
\ No newline at end of file |
