Files
SabreTools.Models/SGA/File4.cs
2023-11-07 20:57:05 -05:00

23 lines
504 B
C#

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