wabbajack/Wabbajack.Downloaders.VerificationCache/IVerificationCache.cs
Timothy Baldridge 4bfce0e418
Cube maps (#2260)
* 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
2022-12-28 09:21:58 -07:00

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);
}