|
|
|
using Godot;
|
|
|
|
using Rokojori.Extensions;
|
|
namespace Rokojori
|
|
{
|
|
public class RDGraphConnection:RDGraphNode
|
|
{
|
|
protected RGGraphProcessor _processor;
|
|
|
|
public RDGraphConnection( RGGraphProcessor processor ):base( processor.graph )
|
|
{
|
|
_processor = processor;
|
|
}
|
|
|
|
}
|
|
} |