2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.SGA
|
2025-09-26 10:57:15 -04:00
|
|
|
{
|
|
|
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
|
|
|
public sealed class Header4 : Header
|
|
|
|
|
{
|
2025-10-30 20:44:16 -04:00
|
|
|
public byte[] FileMD5 { get; set; } = new byte[0x10];
|
2025-09-26 10:57:15 -04:00
|
|
|
|
2025-10-31 13:59:28 -04:00
|
|
|
public string Name { get; set; } = string.Empty;
|
2025-09-26 10:57:15 -04:00
|
|
|
|
2025-10-30 20:44:16 -04:00
|
|
|
public byte[] HeaderMD5 { get; set; } = new byte[0x10];
|
2025-09-26 10:57:15 -04:00
|
|
|
|
|
|
|
|
public uint HeaderLength { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint FileDataOffset { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint Dummy0 { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|