mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
13 lines
284 B
C#
13 lines
284 B
C#
namespace BinaryObjectScanner.Models.XZP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
|
|
public sealed class DirectoryEntry
|
|
{
|
|
public uint FileNameCRC;
|
|
|
|
public uint EntryLength;
|
|
|
|
public uint EntryOffset;
|
|
}
|
|
}
|