| 50 | } |
| 51 | |
| 52 | void ExtensionState::ShutdownLuaState() |
| 53 | { |
| 54 | EnteredCheck(); |
| 55 | if (Lua) { |
| 56 | Lua->OnShutdown(); |
| 57 | Lua->Shutdown(); |
| 58 | } |
| 59 | Lua.reset(); |
| 60 | } |
| 61 | |
| 62 | void ExtensionState::InitializeLuaState() |
| 63 | { |
nothing calls this directly
no test coverage detected