nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame Contribute Delete
266 Bytes
namespace Unity.VisualScripting
{
[Editor(typeof(StateGraph))]
public class StateGraphEditor : GraphEditor
{
public StateGraphEditor(Metadata metadata) : base(metadata) { }
private new StateGraph graph => (StateGraph)base.graph;
}
}