Files
BinaryObjectScanner/BurnOutSharp.Models/SGA/Folder.cs
2022-12-27 17:12:55 -08:00

19 lines
370 B
C#

namespace BurnOutSharp.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;
}
}