Exemplo n.º 1
0
 public void RegisterOnEnterState(StateActionEvent action)
 {
     enterStateAction += action;
 }
Exemplo n.º 2
0
 public void RegisterOnExitState(StateActionEvent action)
 {
     exitStateAction += action;
 }
Exemplo n.º 3
0
 public void RegisterOnState(StateActionEvent action)
 {
     onStateAction += action;
 }
Exemplo n.º 4
0
 public ActorStateMachine RegisterOnExitState(StateActionEvent action)
 {
     exitStateAction += action;
     return(this);
 }