mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
* ZArchive support * Fix offset record format * Simplfiy Extensions * Delete unused writers and test data * Rework reader * Fix build
27 lines
744 B
C#
27 lines
744 B
C#
namespace SabreTools.Data.Models.ZArchive
|
|
{
|
|
/// <summary>
|
|
/// Node in the FileTree representing a directory
|
|
/// </summary>
|
|
/// <see href="https://github.com/Exzap/ZArchive/"/>
|
|
public sealed class DirectoryEntry : FileDirectoryEntry
|
|
{
|
|
/// <summary>
|
|
/// Starting index of the directory node
|
|
/// </summary>
|
|
/// <remarks>Big-endian</remarks>
|
|
public uint NodeStartIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of
|
|
/// </summary>
|
|
/// <remarks>Big-endian</remarks>
|
|
public uint Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved field
|
|
/// </summary>
|
|
public uint Reserved { get; set; }
|
|
}
|
|
}
|