Пример #1
0
 public void Transition(States toState, Token token)
 {
     Current = StateLookup[toState];
     Current.Enter(token, this);
 }
Пример #2
0
 public HtmlStateMachineGizmo()
 {
     Current = StateLookup[States.Begin];
 }