Exemplo n.º 1
0
 public static PatchResult ExecuteMods(string gamedir, FileStorage storage, List <FileMod> mods, ProgressReporter progress)
 {
     return(ExecuteModsInternal(gamedir, storage, mods, progress, false));
 }
Exemplo 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));
 }