mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 09:16:01 +08:00
8 lines
171 B
C#
8 lines
171 B
C#
[CustomNodeEditor(typeof(MathNode), "Math")]
|
|
public class AddNodeEditor : NodeEditor {
|
|
|
|
public override void OnNodeGUI() {
|
|
base.OnNodeGUI();
|
|
}
|
|
}
|