Files
SabreTools.Models/XZP/DirectoryEntry.cs

13 lines
314 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.XZP
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
public sealed class DirectoryEntry
{
2023-09-10 21:24:10 -04:00
public uint FileNameCRC { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint EntryLength { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint EntryOffset { get; set; }
2023-09-04 00:11:04 -04:00
}
}