mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
11 lines
295 B
C#
11 lines
295 B
C#
|
namespace Wabbajack.DTOs.BSA.FileStates
|
||
|
{
|
||
|
public class BA2Chunk
|
||
|
{
|
||
|
public bool Compressed { get; set; }
|
||
|
public uint Align { get; set; }
|
||
|
public ushort EndMip { get; set; }
|
||
|
public ushort StartMip { get; set; }
|
||
|
public uint FullSz { get; set; }
|
||
|
}
|
||
|
}
|