mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-09 13:47:42 +00:00
11 lines
315 B
C#
11 lines
315 B
C#
namespace BinaryObjectScanner.Models.GCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
|
|
public sealed class FragmentationMap
|
|
{
|
|
/// <summary>
|
|
/// The index of the next data block.
|
|
/// </summary>
|
|
public uint NextDataBlockIndex;
|
|
}
|
|
} |