(Lua.State* L)
| 19 | } |
| 20 | |
| 21 | private static int CsLuaAdd(Lua.State* L) |
| 22 | { |
| 23 | int a = LuaL.checkinteger(L, 1); |
| 24 | int b = LuaL.checkinteger(L, 2); |
| 25 | Lua.pushinteger(L, a + b); |
| 26 | return 1; |
| 27 | } |
| 28 | |
| 29 | private static int CsLuaMul(Lua.State* L) |
| 30 | { |
nothing calls this directly
no test coverage detected