| 925 | } |
| 926 | |
| 927 | void ScriptEngine::LoadPlugin(const std::string& path) |
| 928 | { |
| 929 | auto plugin = std::make_shared<Plugin>(path); |
| 930 | LoadPlugin(plugin); |
| 931 | } |
| 932 | |
| 933 | void ScriptEngine::LoadPlugin(std::shared_ptr<Plugin>& plugin) |
| 934 | { |
nothing calls this directly
no test coverage detected