mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 21:29:18 +00:00
23 lines
460 B
C#
23 lines
460 B
C#
namespace BinaryObjectScanner.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public abstract class DirectoryHeader<T>
|
|
{
|
|
public uint SectionOffset;
|
|
|
|
public T SectionCount;
|
|
|
|
public uint FolderOffset;
|
|
|
|
public T FolderCount;
|
|
|
|
public uint FileOffset;
|
|
|
|
public T FileCount;
|
|
|
|
public uint StringTableOffset;
|
|
|
|
public T StringTableCount;
|
|
}
|
|
}
|