| 3439 | } |
| 3440 | |
| 3441 | auto static start_console_lua_executor() -> void |
| 3442 | { |
| 3443 | LuaStatics::console_executor = &LuaMadeSimple::new_state(); |
| 3444 | LuaStatics::console_executor->open_all_libs(); |
| 3445 | setup_lua_global_functions_internal(*LuaStatics::console_executor, LuaMod::IsTrueMod::No); |
| 3446 | setup_lua_classes_internal(*LuaStatics::console_executor); |
| 3447 | register_input_globals(*LuaStatics::console_executor); |
| 3448 | register_all_property_types(*LuaStatics::console_executor); |
| 3449 | register_object_flags(*LuaStatics::console_executor); |
| 3450 | LuaStatics::console_executor_enabled = true; |
| 3451 | }; |
| 3452 | |
| 3453 | auto static stop_console_lua_executor() -> void |
| 3454 | { |
no test coverage detected