mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-24 17:52:18 +00:00
31 lines
535 B
C#
31 lines
535 B
C#
namespace SabreTools.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public sealed class Header4 : Header
|
|
{
|
|
#if NET48
|
|
public byte[] FileMD5;
|
|
#else
|
|
public byte[]? FileMD5;
|
|
#endif
|
|
|
|
#if NET48
|
|
public string Name;
|
|
#else
|
|
public string? Name;
|
|
#endif
|
|
|
|
#if NET48
|
|
public byte[] HeaderMD5;
|
|
#else
|
|
public byte[]? HeaderMD5;
|
|
#endif
|
|
|
|
public uint HeaderLength;
|
|
|
|
public uint FileDataOffset;
|
|
|
|
public uint Dummy0;
|
|
}
|
|
}
|