MathGraph.cs 332 B

12345678
  1. using System;
  2. using UnityEngine;
  3. namespace XNode.Examples {
  4. /// <summary> Defines an example nodegraph that can be created as an asset in the Project window. </summary>
  5. [Serializable, CreateAssetMenu(fileName = "New Math Graph", menuName = "xNode Examples/Math Graph")]
  6. public class MathGraph : XNode.NodeGraph { }
  7. }