public FSM(string name) { this.name = name; this.currentState = null; stateMap = new Dictionary <string, FSMState>(); }
public FSMAction(FSMState owner) { this.owner = owner; }