2019-10-12 18:03:45 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-10-16 03:10:34 +00:00
|
|
|
|
using Wabbajack.Lib.Validation;
|
2019-10-12 18:03:45 +00:00
|
|
|
|
|
2019-10-16 03:10:34 +00:00
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
2019-10-12 18:03:45 +00:00
|
|
|
|
{
|
2019-10-12 22:15:20 +00:00
|
|
|
|
public interface IDownloader
|
2019-10-12 18:03:45 +00:00
|
|
|
|
{
|
|
|
|
|
AbstractDownloadState GetDownloaderState(dynamic archive_ini);
|
2019-10-12 22:15:20 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called before any downloads are inacted by the installer;
|
|
|
|
|
/// </summary>
|
|
|
|
|
void Prepare();
|
2019-10-12 18:03:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|