| 4329 | } |
| 4330 | |
| 4331 | static int internal_setArmokTools(lua_State *L) { |
| 4332 | vector<string> tool_names; |
| 4333 | Lua::GetVector(L, tool_names); |
| 4334 | Core::getInstance().setArmokTools(tool_names); |
| 4335 | return 0; |
| 4336 | } |
| 4337 | |
| 4338 | template<typename T> |
| 4339 | static std::map<const char *, T> translate_event_types(const std::unordered_map<int32_t, T> & in_map) { |
nothing calls this directly
no test coverage detected