Files

23 lines
532 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.SGA
2025-09-26 10:57:15 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public abstract class File
{
public uint NameOffset { get; set; }
public string Name { get; set; } = string.Empty;
2025-09-26 10:57:15 -04:00
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; }
}
}