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