Files
SabreTools.Models/XZP/DirectoryEntry.cs
2023-09-10 21:24:10 -04:00

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; }
}
}