Exemplo n.º 1
0
 public EZAction <T1, T2> RegAction <T1, T2>(EZAction <T1, T2> newAct, Action <T1, T2> act)
 {
     newAct           += act;
     m_Actions[newAct] = act;
     return(newAct);
 }
Exemplo n.º 2
0
 public EZAction <T1, T2, T3, T4, T5> RegAction <T1, T2, T3, T4, T5>(EZAction <T1, T2, T3, T4, T5> newAct, Action <T1, T2, T3, T4, T5> act)
 {
     newAct           += act;
     m_Actions[newAct] = act;
     return(newAct);
 }
Exemplo n.º 3
0
 public EZAction RegAction(EZAction newAct, Action act)
 {
     newAct           += act;
     m_Actions[newAct] = act;
     return(newAct);
 }