Files
SabreTools.Models/SGA/Header4.cs
2023-09-04 21:14:41 -04:00

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;
}
}