Files
SabreTools.Models/SGA/File4.cs

23 lines
504 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.SGA
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public class File4
{
2023-09-10 21:24:10 -04:00
public uint NameOffset { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public string? Name { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint Offset { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint SizeOnDisk { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint Size { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint TimeModified { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public byte Dummy0 { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public byte Type { get; set; }
2023-09-04 00:11:04 -04:00
}
}