| 588 | return 0; |
| 589 | } |
| 590 | static int SetBound(lua_State* L)LNOEXCEPT |
| 591 | { |
| 592 | LPOOL.SetBound( |
| 593 | luaL_checkinteger(L, 1), |
| 594 | luaL_checkinteger(L, 2), |
| 595 | luaL_checkinteger(L, 3), |
| 596 | luaL_checkinteger(L, 4) |
| 597 | ); |
| 598 | return 0; |
| 599 | } |
| 600 | static int CollisionCheck(lua_State* L)LNOEXCEPT |
| 601 | { |
| 602 | LPOOL.CheckIsMainThread(L); |
nothing calls this directly
no outgoing calls
no test coverage detected