Ejemplo n.º 1
0
 public FSM(string name)
 {
     this.name         = name;
     this.currentState = null;
     stateMap          = new Dictionary <string, FSMState>();
 }
Ejemplo n.º 2
0
 public FSMAction(FSMState owner)
 {
     this.owner = owner;
 }