示例#1
0
int w_Fixture_destroy(lua_State *L)
{
	Fixture *t = luax_checkfixture(L, 1);
	luax_catchexcept(L, [&](){ t->destroy(); });
	return 0;
}