| 354 | }; |
| 355 | |
| 356 | static void LuaInit(lua_State* L) |
| 357 | { |
| 358 | DM_LUA_STACK_CHECK(L, 0); |
| 359 | |
| 360 | luaL_register(L, "label", Module_methods); |
| 361 | lua_pop(L, 1); |
| 362 | } |
| 363 | |
| 364 | void ScriptLabelRegister(const ScriptLibContext& context) |
| 365 | { |
no outgoing calls
no test coverage detected