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