Files

15 lines
378 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 Header6 : Header
{
public string Name { get; set; } = string.Empty;
2025-09-26 10:57:15 -04:00
public uint HeaderLength { get; set; }
public uint FileDataOffset { get; set; }
public uint Dummy0 { get; set; }
}
}