mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 09:16:01 +08:00
9 lines
253 B
C#
9 lines
253 B
C#
using UnityEngine;
|
|
using System;
|
|
using XNode;
|
|
|
|
/// <summary> Defines an example nodegraph. </summary>
|
|
[Serializable, CreateAssetMenu(fileName = "ExampleNodeGraph", menuName = "Node Graph/Example")]
|
|
public class ExampleNodeGraph : XNode.NodeGraph {
|
|
}
|