Exemple #1
0
 public static TResult InvokeFunc <T0, TResult>(this LuaTable self, string method, T0 arg0)
 {
     return(LuaTableUtil.InvokeFunc <T0, TResult>(self, method, arg0));
 }
Exemple #2
0
 public static void InvokeAction(this LuaTable self, string method)
 {
     LuaTableUtil.InvokeAction(self, method);
 }
Exemple #3
0
 public static void InvokeAction <T0>(this LuaTable self, string method, T0 arg0)
 {
     LuaTableUtil.InvokeAction(self, method, arg0);
 }