wabbajack/Wabbajack.Compression.BSA/Interfaces/IReader.cs

15 lines
335 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using System.Collections.Generic;
using Wabbajack.DTOs.BSA.ArchiveStates;
namespace Wabbajack.Compression.BSA.Interfaces
{
public interface IReader
{
/// <summary>
/// The files defined by the archive
/// </summary>
IEnumerable<IFile> Files { get; }
IArchive State { get; }
}
}