Files
SabreTools.Models/SGA/DirectoryHeader.cs
2023-09-04 00:12:49 -04:00

23 lines
451 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;
public T SectionCount;
public uint FolderOffset;
public T FolderCount;
public uint FileOffset;
public T FileCount;
public uint StringTableOffset;
public T StringTableCount;
}
}