Exemplo n.º 1
0
 public StateMachine()
 {
     this.StateComprarer     = new StateComprarer <StateType>();
     this.TransitionComparer = new TransitionComprarer <TransitionType, StateType>(this.StateComprarer);
 }
Exemplo n.º 2
0
 public TransitionComprarer(StateComprarer <StateType> stateComparer)
 {
     this.StateComprarer = stateComparer;
 }