mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
13 lines
277 B
C#
13 lines
277 B
C#
namespace BurnOutSharp.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;
|
|
}
|
|
}
|