| 4136 | } |
| 4137 | |
| 4138 | static int internal_removeScriptPath(lua_State *L) |
| 4139 | { |
| 4140 | const char *path = luaL_checkstring(L, 1); |
| 4141 | lua_pushboolean(L, Core::getInstance().removeScriptPath(path)); |
| 4142 | return 1; |
| 4143 | } |
| 4144 | |
| 4145 | static int internal_getScriptPaths(lua_State *L) |
| 4146 | { |
nothing calls this directly
no test coverage detected