1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 17:26:02 +08:00
xNode/Examples/StateMachine/StateGraph.cs
2018-01-17 11:12:51 +01:00

16 lines
369 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace XNode.Examples.StateGraph {
[CreateAssetMenu(fileName = "New State Graph", menuName = "xNode Examples/State Graph")]
public class StateGraph : NodeGraph {
// The current "active" node
public StateNode current;
public void Continue() {
current.MoveNext();
}
}
}