wabbajack/Wabbajack.Lib/Downloaders/IDownloader.cs

20 lines
456 B
C#
Raw Normal View History

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