mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 05:36:07 +00:00
23 lines
444 B
C#
23 lines
444 B
C#
namespace BurnOutSharp.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public 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;
|
|
}
|
|
}
|