mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-22 08:42:13 +00:00
23 lines
559 B
C#
23 lines
559 B
C#
namespace SabreTools.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public abstract class DirectoryHeader<T>
|
|
{
|
|
public uint SectionOffset { get; set; }
|
|
|
|
public T? SectionCount { get; set; }
|
|
|
|
public uint FolderOffset { get; set; }
|
|
|
|
public T? FolderCount { get; set; }
|
|
|
|
public uint FileOffset { get; set; }
|
|
|
|
public T? FileCount { get; set; }
|
|
|
|
public uint StringTableOffset { get; set; }
|
|
|
|
public T? StringTableCount { get; set; }
|
|
}
|
|
}
|