コード例 #1
0
ファイル: FSMBehavior.java プロジェクト: manuignatius/fjage
 /**
  * Changes the FSM state to the specified state.
  *
  * @param name name of the state to change to.
  */
 protected void setNextState(Object name) {
   if (fsm != null) fsm.setNextState(name);
 }