mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-16 13:55:29 +00:00
16 lines
356 B
C#
16 lines
356 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.XZP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class DirectoryEntry
|
|
{
|
|
public uint FileNameCRC;
|
|
|
|
public uint EntryLength;
|
|
|
|
public uint EntryOffset;
|
|
}
|
|
}
|