コード例 #1
0
ファイル: CDPLAYER.cs プロジェクト: ktorbett/TestFSM
 public CDPLAYER(string cdplayerName, FSM_STT stt, FSMType fsmType)
 {
     this.cdplayerName = cdplayerName;
     this.fsm          = FSM.createFSM(this.cdplayerName, stt, this, fsmType);
     this.fsm.setInitialState();
 }
コード例 #2
0
ファイル: ACTOR.cs プロジェクト: ktorbett/TestFSM
 public ACTOR(string actorName, FSM_STT stt, FSMType fsmType)
 {
     this.actorName = actorName;
     this.fsm       = FSM.createFSM(this.actorName, stt, this, fsmType);
     this.fsm.setInitialState();
 }