Files
SabreTools.Models/GCF/BlockEntryMap.cs

22 lines
634 B
C#
Raw Permalink Normal View History

2024-04-23 13:30:43 -04:00
using System.Runtime.InteropServices;
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"/>
2024-04-23 13:30:43 -04:00
[StructLayout(LayoutKind.Sequential)]
2023-09-04 00:11:04 -04:00
public sealed class BlockEntryMap
{
/// <summary>
/// The previous block entry. (N/A if == BlockCount.)
/// </summary>
2024-04-23 13:30:43 -04:00
public uint PreviousBlockEntryIndex;
2023-09-04 00:11:04 -04:00
/// <summary>
/// The next block entry. (N/A if == BlockCount.)
/// </summary>
2024-04-23 13:30:43 -04:00
public uint NextBlockEntryIndex;
2023-09-04 00:11:04 -04:00
}
}