mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-09-24 15:54:57 +00:00
BOS.* -> BOS.*
This commit is contained in:
20
BinaryObjectScanner.Models/SGA/Section.cs
Normal file
20
BinaryObjectScanner.Models/SGA/Section.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user