Files
korenkonder 30de413922 Release v0.4.9.10
A3DA, Bloom, Color Correction DataBank, DOF, Light
2021-01-03 06:22:48 +03:00

23 lines
675 B
C#

namespace KKdBaseLib.F2
{
public struct Header
{
public uint Signature; // 0x00
public uint DataSize; // 0x04
public uint Length; // 0x08
public uint Flags; // 0x0C
public uint Depth; // 0x10
public uint SectionSize; // 0x14
public uint Version; // 0x18
public uint InnerSignature; // 0x30
public Format Format;
public bool UseBigEndian;
public bool UseSectionSize;
public bool IsX => Format == Format.X || Format == Format.XHD;
public override string ToString() => Signature.ToS(false);
}
}