Files
BinaryObjectScanner/BinaryObjectScanner.Models/SGA/Folder.cs

19 lines
377 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.SGA
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
2022-12-27 17:12:55 -08:00
public abstract class Folder<T>
{
public uint NameOffset;
2022-12-26 23:22:03 -08:00
public string Name;
public T FolderStartIndex;
public T FolderEndIndex;
public T FileStartIndex;
public T FileEndIndex;
}
}