mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
21 lines
410 B
C#
21 lines
410 B
C#
namespace BinaryObjectScanner.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public abstract class Section<T>
|
|
{
|
|
public string Alias;
|
|
|
|
public string Name;
|
|
|
|
public T FolderStartIndex;
|
|
|
|
public T FolderEndIndex;
|
|
|
|
public T FileStartIndex;
|
|
|
|
public T FileEndIndex;
|
|
|
|
public T FolderRootIndex;
|
|
}
|
|
}
|