mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 23:25:35 +00:00
17 lines
417 B
C#
17 lines
417 B
C#
namespace SabreTools.Models.VPK
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VPKFile.h"/>
|
|
public sealed class DirectoryItem
|
|
{
|
|
public string? Extension { get; set; }
|
|
|
|
public string? Path { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public DirectoryEntry? DirectoryEntry { get; set; }
|
|
|
|
public byte[]? PreloadData { get; set; }
|
|
}
|
|
}
|