Ejemplo n.º 1
0
 public CDPLAYER(string cdplayerName, FSM_STT stt, FSMType fsmType)
 {
     this.cdplayerName = cdplayerName;
     this.fsm          = FSM.createFSM(this.cdplayerName, stt, this, fsmType);
     this.fsm.setInitialState();
 }
Ejemplo n.º 2
0
 public ACTOR(string actorName, FSM_STT stt, FSMType fsmType)
 {
     this.actorName = actorName;
     this.fsm       = FSM.createFSM(this.actorName, stt, this, fsmType);
     this.fsm.setInitialState();
 }