b486678290
Library -Artifacts
11 lines
266 B
C#
11 lines
266 B
C#
namespace Unity.VisualScripting
|
|
{
|
|
[Editor(typeof(StateGraph))]
|
|
public class StateGraphEditor : GraphEditor
|
|
{
|
|
public StateGraphEditor(Metadata metadata) : base(metadata) { }
|
|
|
|
private new StateGraph graph => (StateGraph)base.graph;
|
|
}
|
|
}
|