Exemplo n.º 1
0
 public void addAction(string evt, EvtAction action)
 {
     this.addAction(evt, delegate(FSMEvent e) {
         action(e);
         return("");
     });
 }
Exemplo n.º 2
0
 public void addAction(string evt, EvtAction action)
 {
     actionMap_.Add (evt, delegate(FSMEvent e) {
         action(e);
         return "";
     });
 }
Exemplo n.º 3
0
 public void addAction(string evt, EvtAction action)
 {
     //			Debug.Log (evt);
     this.addAction (evt, delegate(FSMEvent e) {
         action(e);
         return "";
     });
 }
Exemplo n.º 4
0
 public void addAction(string evtString, EvtAction action)
 {
     _eventAction.Add(evtString, action);
 }