Files

13 lines
335 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 abstract class Header
{
public string Signature { get; set; } = string.Empty;
2025-09-26 10:57:15 -04:00
public ushort MajorVersion { get; set; }
public ushort MinorVersion { get; set; }
}
}