mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
31 lines
700 B
C#
31 lines
700 B
C#
|
using Wabbajack.DTOs.JsonConverters;
|
||
|
|
||
|
namespace Wabbajack.DTOs.BSA.FileStates
|
||
|
{
|
||
|
[JsonName("BA2DX10Entry")]
|
||
|
[JsonAlias("BA2DX10Entry, Compression.BSA")]
|
||
|
public class BA2DX10File : AFile
|
||
|
{
|
||
|
public BA2Chunk[] Chunks { get; set; }
|
||
|
|
||
|
public ushort Unk16 { get; set; }
|
||
|
|
||
|
public byte PixelFormat { get; set; }
|
||
|
|
||
|
public byte NumMips { get; set; }
|
||
|
|
||
|
public ushort Width { get; set; }
|
||
|
|
||
|
public ushort Height { get; set; }
|
||
|
|
||
|
public ushort ChunkHdrLen { get; set; }
|
||
|
|
||
|
public byte Unk8 { get; set; }
|
||
|
|
||
|
public uint DirHash { get; set; }
|
||
|
|
||
|
public string Extension { get; set; }
|
||
|
|
||
|
public uint NameHash { get; set; }
|
||
|
}
|
||
|
}
|