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