| 680 | }; |
| 681 | |
| 682 | static void LuaCallbackCustomArgs(lua_State* L, void* user_args) |
| 683 | { |
| 684 | CallbackArgs* args = (CallbackArgs*)user_args; |
| 685 | dmScript::PushHash(L, args->a); |
| 686 | lua_pushnumber(L, args->b); |
| 687 | } |
| 688 | |
| 689 | |
| 690 | static int CreateAndPushInstance(lua_State* L) |
nothing calls this directly
no test coverage detected