Files
SabreTools.Models/GCF/BlockEntryMap.cs

19 lines
579 B
C#
Raw Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.GCF
2023-09-04 00:11:04 -04:00
{
/// <remarks>
/// Part of version 5 but not version 6.
/// </remarks>
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
public sealed class BlockEntryMap
{
/// <summary>
/// The previous block entry. (N/A if == BlockCount.)
/// </summary>
2023-09-10 21:24:10 -04:00
public uint PreviousBlockEntryIndex { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// The next block entry. (N/A if == BlockCount.)
/// </summary>
2023-09-10 21:24:10 -04:00
public uint NextBlockEntryIndex { get; set; }
2023-09-04 00:11:04 -04:00
}
}