mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 05:36:07 +00:00
17 lines
332 B
C#
17 lines
332 B
C#
namespace BurnOutSharp.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public class Folder<T>
|
|
{
|
|
public uint NameOffset;
|
|
|
|
public T FolderStartIndex;
|
|
|
|
public T FolderEndIndex;
|
|
|
|
public T FileStartIndex;
|
|
|
|
public T FileEndIndex;
|
|
}
|
|
}
|