1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 09:16:01 +08:00
xNode/Examples/Nodes/Editor/MathNodeEditor.cs
2017-09-22 12:46:45 +02:00

8 lines
171 B
C#

[CustomNodeEditor(typeof(MathNode), "Math")]
public class AddNodeEditor : NodeEditor {
public override void OnNodeGUI() {
base.OnNodeGUI();
}
}