1namespace Unity.VisualScripting 2{ 3 public interface IStateTransition : IGraphElementWithDebugData, IConnection<IState, IState> 4 { 5 void Branch(Flow flow); 6 7 void OnEnter(Flow flow); 8 9 void OnExit(Flow flow); 10 } 11}