namespace CleverCrow.Fluid.FSMs { /// /// Triggers the Exit method on the current parent FSM /// public class ActionFsmExit : ActionBase { protected override void OnEnter () { ParentState.ParentFsm.Exit(); } } }