rokojori_action_library/Runtime/Rendering/RenderGraph/RDGraphNode.cs

18 lines
264 B
C#

using Godot;
using Rokojori.Extensions;
namespace Rokojori
{
public class RDGraphNode
{
RDGraph _graph;
public RDGraph graph => _graph;
public RDGraphNode( RDGraph graph )
{
_graph = graph;
_graph.Register( this );
}
}
}