mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 05:40:03 +00:00
15 lines
314 B
C#
15 lines
314 B
C#
namespace BinaryObjectScanner.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public sealed class Header6 : Header
|
|
{
|
|
public string Name;
|
|
|
|
public uint HeaderLength;
|
|
|
|
public uint FileDataOffset;
|
|
|
|
public uint Dummy0;
|
|
}
|
|
}
|