mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
22 lines
485 B
C#
22 lines
485 B
C#
namespace BinaryObjectScanner.Models.PAK
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/PAKFile.h"/>
|
|
public sealed class DirectoryItem
|
|
{
|
|
/// <summary>
|
|
/// Item Name
|
|
/// </summary>
|
|
public string ItemName;
|
|
|
|
/// <summary>
|
|
/// Item Offset
|
|
/// </summary>
|
|
public uint ItemOffset;
|
|
|
|
/// <summary>
|
|
/// Item Length
|
|
/// </summary>
|
|
public uint ItemLength;
|
|
}
|
|
}
|