Files

19 lines
506 B
C#
Raw Permalink Normal View History

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
{
public byte[] FileMD5 { get; set; } = new byte[0x10];
2025-09-26 10:57:15 -04:00
public string Name { get; set; } = string.Empty;
2025-09-26 10:57:15 -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; }
}
}