Пример #1
0
 public (StateNode IfState, StateNode IfState1, StateNode IfState2, StateNode IfState3, StateNode IfState4, StateNode DefaultState) SetNext(NextStateKind nextStateKind, IfState ifState, IfState ifState1, IfState ifState2, IfState ifState3, IfState ifState4, DefaultState defaultState)
 {
     SetNextInternal(nextStateKind, defaultState, ifState, ifState1, ifState2, ifState3, ifState4);
     return(ifState.StateNode, ifState1.StateNode, ifState2.StateNode, ifState3.StateNode, ifState4.StateNode, defaultState.StateNode);
 }
Пример #2
0
 public (StateNode IfState, StateNode IfState1, StateNode DefaultState) SetNext(NextStateKind nextStateKind, IfState ifState, IfState ifState1, DefaultState defaultState)
 {
     SetNextInternal(nextStateKind, defaultState, ifState, ifState1);
     return(ifState.StateNode, ifState1.StateNode, defaultState.StateNode);
 }