mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 05:40:03 +00:00
13 lines
284 B
C#
13 lines
284 B
C#
namespace BinaryObjectScanner.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public abstract class Header
|
|
{
|
|
public string Signature;
|
|
|
|
public ushort MajorVersion;
|
|
|
|
public ushort MinorVersion;
|
|
}
|
|
}
|