public CDPLAYER(string cdplayerName, FSM_STT stt, FSMType fsmType) { this.cdplayerName = cdplayerName; this.fsm = FSM.createFSM(this.cdplayerName, stt, this, fsmType); this.fsm.setInitialState(); }
public ACTOR(string actorName, FSM_STT stt, FSMType fsmType) { this.actorName = actorName; this.fsm = FSM.createFSM(this.actorName, stt, this, fsmType); this.fsm.setInitialState(); }