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

27 lines
451 B
C#

namespace SabreTools.Models.SGA
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public class File4
{
public uint NameOffset;
#if NET48
public string Name;
#else
public string? Name;
#endif
public uint Offset;
public uint SizeOnDisk;
public uint Size;
public uint TimeModified;
public byte Dummy0;
public byte Type;
}
}