mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-24 17:52:18 +00:00
17 lines
332 B
C#
17 lines
332 B
C#
namespace SabreTools.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public abstract class Header
|
|
{
|
|
#if NET48
|
|
public string Signature;
|
|
#else
|
|
public string? Signature;
|
|
#endif
|
|
|
|
public ushort MajorVersion;
|
|
|
|
public ushort MinorVersion;
|
|
}
|
|
}
|