wabbajack/Wabbajack.Compiler/PatchCache/CacheEntry.cs

7 lines
166 B
C#
Raw Permalink Normal View History

2021-09-27 12:42:46 +00:00
using Wabbajack.Hashing.xxHash64;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Compiler.PatchCache;
public record CacheEntry(Hash From, Hash To, long PatchSize, IBinaryPatchCache cache)
2021-09-27 12:42:46 +00:00
{
}