mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-19 05:42:21 +00:00
23 lines
504 B
C#
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; }
|
|
}
|
|
}
|