mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
417 B
C#
14 lines
417 B
C#
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);
|
|
} |