mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
4bfce0e418
* Add some support for cubemaps in BA2 * add read support for cubemaps in BA2 routines * Fix slide support during compilation * Set default logging level to Information instead of Trace * update CHANGELOG.md
10 lines
281 B
C#
10 lines
281 B
C#
using Wabbajack.DTOs;
|
|
using Wabbajack.DTOs.DownloadStates;
|
|
|
|
namespace Wabbajack.Downloaders.VerificationCache;
|
|
|
|
public interface IVerificationCache
|
|
{
|
|
Task<(bool? IsValid, IDownloadState State)> Get(IDownloadState archive);
|
|
Task Put(IDownloadState archive, bool valid);
|
|
} |