2025-04-26 20:04:11 +00:00
|
|
|
|
|
|
|
|
using Godot;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2025-04-26 20:04:11 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
public class RDGraphNode
|
|
|
|
|
{
|
|
|
|
|
RDGraph _graph;
|
|
|
|
|
public RDGraph graph => _graph;
|
|
|
|
|
|
|
|
|
|
public RDGraphNode( RDGraph graph )
|
|
|
|
|
{
|
|
|
|
|
_graph = graph;
|
|
|
|
|
_graph.Register( this );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|