Exemplo n.º 1
0
 public FSMState Register(FSMState state, Func <bool> func)
 {
     states.Add(state, func);
     return(this);
 }
Exemplo n.º 2
0
 public void Entity(FSMState state)
 {
     this.curState = state;
     state.OnEtenr();
 }