| 2426 | } |
| 2427 | |
| 2428 | std::vector<ModInstance*> ModLoading::GetAllMods() { |
| 2429 | std::vector<ModInstance*> lmods; |
| 2430 | for (auto& mod : mods) { |
| 2431 | lmods.push_back(mod); |
| 2432 | } |
| 2433 | return lmods; |
| 2434 | } |
| 2435 | |
| 2436 | void ModLoading::AddMod(const std::string& path) { |
| 2437 | std::vector<ModInstance*>::iterator modit = GetMod(path); |
no test coverage detected