mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
472 B
C#
21 lines
472 B
C#
|
using Wabbajack.DTOs.JsonConverters;
|
||
|
|
||
|
namespace Wabbajack.DTOs.BSA.ArchiveStates
|
||
|
{
|
||
|
public enum BA2EntryType
|
||
|
{
|
||
|
GNRL,
|
||
|
DX10,
|
||
|
GNMF
|
||
|
}
|
||
|
|
||
|
[JsonName("BA2State, Compression.BSA")]
|
||
|
[JsonAlias("BA2State")]
|
||
|
public class BA2State : IArchive
|
||
|
{
|
||
|
public bool HasNameTable { get; set; }
|
||
|
public BA2EntryType Type { get; set; }
|
||
|
public string HeaderMagic { get; set; }
|
||
|
public uint Version { get; set; }
|
||
|
}
|
||
|
}
|