| 312 | } |
| 313 | |
| 314 | bool DoesScriptFunctionExistInModules(const String &fn_name) |
| 315 | { |
| 316 | for (size_t i = 0; i < numScriptModules; ++i) |
| 317 | { |
| 318 | if (DoesScriptFunctionExist(scriptModules[i].get(), fn_name)) |
| 319 | return true; |
| 320 | } |
| 321 | return DoesScriptFunctionExist(gamescript.get(), fn_name); |
| 322 | } |
| 323 | |
| 324 | bool DoesScriptFunctionExistInModule(const String &script_module, const String &fn_name) |
| 325 | { |
no test coverage detected