| 32 | sol::object getSection( |
| 33 | lua_State* state, std::string_view sectionName, bool readOnly, bool forMenuScripts = false); |
| 34 | sol::object getMutableSection(lua_State* state, std::string_view sectionName, bool forMenuScripts = false) |
| 35 | { |
| 36 | return getSection(state, sectionName, false, forMenuScripts); |
| 37 | } |
| 38 | sol::object getReadOnlySection(lua_State* state, std::string_view sectionName) |
| 39 | { |
| 40 | return getSection(state, sectionName, true); |
no outgoing calls