示例#1
0
 public FSM(string name)
 {
     this.name         = name;
     this.currentState = null;
     stateMap          = new Dictionary <string, FSMState>();
 }
 public FSMAction(FSMState owner)
 {
     this.owner = owner;
 }