Inheritance: LuaBaseFunctor
Exemplo n.º 1
0
 public static Action <T1, T2> ToAction <T1, T2>(this IntPtr L, Action <T1, T2> caller)
 {
     return(LuaAction <T1, T2> .Create(L, caller));
 }
Exemplo n.º 2
0
 public static Action <T1, T2, T3, T4, T5> ToAction <T1, T2, T3, T4, T5>(this IntPtr L, Action <T1, T2, T3, T4, T5> caller)
 {
     return(LuaAction <T1, T2, T3, T4, T5> .Create(L, caller));
 }
Exemplo n.º 3
0
 public static Action ToAction(this IntPtr L, Action caller)
 {
     return(LuaAction.Create(L, caller));
 }