Files
SabreTools.Models/SGA/Folder.cs
2023-09-04 21:14:41 -04:00

39 lines
648 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;
#if NET48
public string Name;
#else
public string? Name;
#endif
#if NET48
public T FolderStartIndex;
#else
public T? FolderStartIndex;
#endif
#if NET48
public T FolderEndIndex;
#else
public T? FolderEndIndex;
#endif
#if NET48
public T FileStartIndex;
#else
public T? FileStartIndex;
#endif
#if NET48
public T FileEndIndex;
#else
public T? FileEndIndex;
#endif
}
}