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