Files
oak-editor/nodes/nodegraph.cpp
T

15 lines
161 B
C++

#include "nodegraph.h"
#include <QDebug>
NodeGraph::NodeGraph() :
output_node_(nullptr)
{
}
Node *NodeGraph::OutputNode()
{
return output_node_.get();
}