Initial work
This commit is contained in:
12
Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs
Normal file
12
Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.Graphics.Shader.StructuredIr
|
||||
{
|
||||
class AstComment : AstNode
|
||||
{
|
||||
public string Comment { get; }
|
||||
|
||||
public AstComment(string comment)
|
||||
{
|
||||
Comment = comment;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user