rj-action-library/Runtime/Rendering/RenderGraph/RDGraphNode.cs

17 lines
237 B
C#
Raw Normal View History

2025-04-26 20:04:11 +00:00
using Godot;
namespace Rokojori
{
public class RDGraphNode
{
RDGraph _graph;
public RDGraph graph => _graph;
public RDGraphNode( RDGraph graph )
{
_graph = graph;
_graph.Register( this );
}
}
}