wabbajack/Wabbajack.Downloaders.Interfaces/IAlternativeStateFinder.cs

15 lines
451 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Wabbajack.DTOs;
namespace Wabbajack.Downloaders.Interfaces
{
/// <summary>
/// Placed on a IDownloader to specify that it can find other files in the same mod
/// used to find files for auto-healing lists
/// </summary>
public interface IAlternativeStateFinder
{
public Task<IReadOnlyList<Archive>> FindAlternativeStates(Archive a);
}
}