wabbajack/Wabbajack.Lib/Downloaders/IDownloader.cs

16 lines
368 B
C#
Raw Normal View History

2019-12-07 02:45:13 +00:00
using System.Threading.Tasks;
namespace Wabbajack.Lib.Downloaders
2019-10-12 18:03:45 +00:00
{
public interface IDownloader
2019-10-12 18:03:45 +00:00
{
2020-04-03 03:57:59 +00:00
Task<AbstractDownloadState> GetDownloaderState(dynamic archiveINI, bool quickMode = false);
/// <summary>
/// Called before any downloads are inacted by the installer;
/// </summary>
2019-12-07 02:45:13 +00:00
Task Prepare();
2019-10-12 18:03:45 +00:00
}
2019-10-12 18:03:45 +00:00
}