mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 21:30:24 +00:00
15 lines
311 B
C#
15 lines
311 B
C#
namespace BinaryObjectScanner.Models.XZP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
|
|
public sealed class DirectoryItem
|
|
{
|
|
public uint FileNameCRC;
|
|
|
|
public uint NameOffset;
|
|
|
|
public string Name;
|
|
|
|
public uint TimeCreated;
|
|
}
|
|
}
|