| 35 | } |
| 36 | |
| 37 | ScriptSystem::~ScriptSystem() |
| 38 | { |
| 39 | for (auto& [name, path] : ScriptModuleManager::Get().GetLoadedModules()) |
| 40 | ScriptModuleManager::Get().Unload(name); |
| 41 | } |
| 42 | |
| 43 | bool ScriptSystem::Compile() |
| 44 | { |
nothing calls this directly
no test coverage detected