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