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