mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 13:52:16 +00:00
19 lines
377 B
C#
19 lines
377 B
C#
namespace BinaryObjectScanner.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public abstract class Folder<T>
|
|
{
|
|
public uint NameOffset;
|
|
|
|
public string Name;
|
|
|
|
public T FolderStartIndex;
|
|
|
|
public T FolderEndIndex;
|
|
|
|
public T FileStartIndex;
|
|
|
|
public T FileEndIndex;
|
|
}
|
|
}
|