public static PatchResult ExecuteMods(string gamedir, FileStorage storage, List <FileMod> mods, ProgressReporter progress) { return(ExecuteModsInternal(gamedir, storage, mods, progress, false)); }
public static PatchResult RevertMods(string gamedir, FileStorage storage, IEnumerable <FileMod> mods, ProgressReporter progress) { return(ExecuteModsInternal(gamedir, storage, InvertMods(mods).ToList(), progress, true)); }