wabbajack/Wabbajack.Downloaders.Interfaces/IAlternativeStateFinder.cs

14 lines
417 B
C#
Raw Permalink Normal View History

2021-09-27 12:42:46 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Wabbajack.DTOs;
2021-10-23 16:51:17 +00:00
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
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
public Task<IReadOnlyList<Archive>> FindAlternativeStates(Archive a);
2021-09-27 12:42:46 +00:00
}