summaryrefslogtreecommitdiff
path: root/Other/NodeEditorExamples/Assets/xNode-examples/Examples/MathGraph/MathGraph.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Other/NodeEditorExamples/Assets/xNode-examples/Examples/MathGraph/MathGraph.cs')
-rw-r--r--Other/NodeEditorExamples/Assets/xNode-examples/Examples/MathGraph/MathGraph.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Other/NodeEditorExamples/Assets/xNode-examples/Examples/MathGraph/MathGraph.cs b/Other/NodeEditorExamples/Assets/xNode-examples/Examples/MathGraph/MathGraph.cs
new file mode 100644
index 00000000..420ce64e
--- /dev/null
+++ b/Other/NodeEditorExamples/Assets/xNode-examples/Examples/MathGraph/MathGraph.cs
@@ -0,0 +1,8 @@
+using System;
+using UnityEngine;
+
+namespace XNode.Examples {
+ /// <summary> Defines an example nodegraph that can be created as an asset in the Project window. </summary>
+ [Serializable, CreateAssetMenu(fileName = "New Math Graph", menuName = "xNode Examples/Math Graph")]
+ public class MathGraph : XNode.NodeGraph { }
+} \ No newline at end of file