| 7360 | } |
| 7361 | |
| 7362 | static void ASDeactivateAllMods() { |
| 7363 | std::vector<ModInstance*> mods = ModLoading::Instance().GetAllMods(); |
| 7364 | for (auto& mod : mods) { |
| 7365 | mod->Activate(false); |
| 7366 | } |
| 7367 | } |
| 7368 | |
| 7369 | static bool ASIsWorkshopAvailable() { |
| 7370 | #if ENABLE_STEAMWORKS |
nothing calls this directly
no test coverage detected