2025-09-26 13:06:18 -04:00
|
|
|
|
namespace SabreTools.Data.Models.StarForce
|
2025-09-26 11:57:18 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <see href="https://web.archive.org/web/20231020050651/https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
|
|
|
|
|
|
public sealed class FileHeader
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Start of file content (encrypted with filename)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public ulong FileContentStart { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// File info (timestamps, size, data position, encrypted)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <remarks>Unknown format</remarks>
|
2025-10-31 13:59:28 -04:00
|
|
|
|
public byte[] FileInfo { get; set; } = [];
|
2025-09-26 11:57:18 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|