/// <summary>
 /// Performs a basic install of the mod.
 /// </summary>
 /// <remarks>
 /// A basic install installs all of the file in the mod to the Data directory
 /// or activates all esp and esm files.
 /// </remarks>
 /// <returns><c>true</c> if the installation succeed;
 /// <c>false</c> otherwise.</returns>
 public bool PerformBasicInstall()
 {
     return(BasicModInstall(Mod.GetFileList(null, true, false)));
 }
 /// <summary>
 /// A simple constructor that initializes the object with the given values.
 /// </summary>
 /// <param name="scriptedMod">The mod for which the script is running.</param>
 /// <param name="coreDelegates">The Core delegates component.</param>
 public ScriptFunctionProxy(Mod scriptedMod, CoreDelegates coreDelegates)
 {
     Mod  = scriptedMod;
     Core = coreDelegates;
 }