(RealStatePtr L, LuaCSFunction o)
| 1202 | } |
| 1203 | |
| 1204 | public void Push(RealStatePtr L, LuaCSFunction o) |
| 1205 | { |
| 1206 | if (Utils.IsStaticPInvokeCSFunction(o)) |
| 1207 | { |
| 1208 | LuaAPI.lua_pushstdcallcfunction(L, o); |
| 1209 | } |
| 1210 | else |
| 1211 | { |
| 1212 | Push(L, (object)o); |
| 1213 | LuaAPI.lua_pushstdcallcfunction(L, metaFunctions.StaticCSFunctionWraper, 1); |
| 1214 | } |
| 1215 | } |
| 1216 | |
| 1217 | public void Push(RealStatePtr L, LuaBase o) |
| 1218 | { |
no test coverage detected