mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-04 00:47:44 +02:00
12 lines
No EOL
244 B
C#
12 lines
No EOL
244 B
C#
namespace Ryujinx.Graphics.Gal.Shader
|
|
{
|
|
class ShaderIrCmnt : ShaderIrNode
|
|
{
|
|
public string Comment { get; private set; }
|
|
|
|
public ShaderIrCmnt(string Comment)
|
|
{
|
|
this.Comment = Comment;
|
|
}
|
|
}
|
|
} |