diff options
Diffstat (limited to 'Other/NodeEditorExamples/Assets/UNEB/NodeEditorState.cs')
-rw-r--r-- | Other/NodeEditorExamples/Assets/UNEB/NodeEditorState.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Other/NodeEditorExamples/Assets/UNEB/NodeEditorState.cs b/Other/NodeEditorExamples/Assets/UNEB/NodeEditorState.cs new file mode 100644 index 00000000..f11cddc2 --- /dev/null +++ b/Other/NodeEditorExamples/Assets/UNEB/NodeEditorState.cs @@ -0,0 +1,18 @@ + +using System.Collections.Generic; +using UnityEngine; + +namespace UNEB +{ + public class NodeEditorState + { + + public Node selectedNode; + public Vector2 lastClickedPosition; + + public NodeOutput selectedOutput; + public NodeInput selectedInput; + + public System.Type typeToCreate; + } +}
\ No newline at end of file |