| 34 | namespace Scripting { |
| 35 | |
| 36 | LuaScriptInterface::LuaScriptInterface() |
| 37 | { |
| 38 | // Initialize lua state |
| 39 | luaState = luaL_newstate(); |
| 40 | if (luaState) { |
| 41 | luaL_openlibs(luaState); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | LuaScriptInterface::~LuaScriptInterface() |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected