mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-25 02:02:17 +00:00
27 lines
451 B
C#
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;
|
|
}
|
|
}
|