| 7 | namespace obe::Bindings |
| 8 | { |
| 9 | std::function<void(sol::state_view)> InitTreeNodeAsTable(const std::string& nodeName) |
| 10 | { |
| 11 | return [nodeName](sol::state_view lua) { lua.safe_script(nodeName + " = {};"); }; |
| 12 | } |
| 13 | |
| 14 | bool checkIfLuaElementExists(sol::state_view lua, const std::string& path) |
| 15 | { |
no test coverage detected