MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / BoundCheck

Method BoundCheck

LuaSTGPlus/LuaWrapper.cpp:372–380  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370 return 1;
371 }
372 static int BoundCheck(lua_State* L)LNOEXCEPT
373 {
374 Wrapper* p = static_cast<Wrapper*>(luaL_checkudata(L, 1, TYPENAME_BENTLASER));
375 if (!p->handle)
376 return luaL_error(L, "lstgBentLaserData was released.");
377 bool r = p->handle->BoundCheck();
378 lua_pushboolean(L, r);
379 return 1;
380 }
381 static int Meta_ToString(lua_State* L)LNOEXCEPT
382 {
383 Wrapper* p = static_cast<Wrapper*>(luaL_checkudata(L, 1, TYPENAME_BENTLASER));

Callers

nothing calls this directly

Calls 1

CheckIsMainThreadMethod · 0.80

Tested by

no test coverage detected