Files
SabreTools.Serialization/SabreTools.Data.Models/PlayJ/UnknownBlock1.cs
Matt Nadareski 7689c6dd07 Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
2026-03-21 16:26:56 -04:00

25 lines
756 B
C#

namespace SabreTools.Data.Models.PlayJ
{
/// <summary>
/// Data referred to by <see cref="AudioHeaderV1.UnknownOffset1"/> or <see cref="AudioHeaderV2.UnknownOffset1"/>
/// </summary>
public sealed class UnknownBlock1
{
/// <summary>
/// Length of the following data block
/// </summary>
public uint Length { get; set; }
/// <summary>
/// Unknown data
/// </summary>
public byte[] Data { get; set; } = [];
// Notes about Data:
// - Might be UInt16 offset and UInt16 length pairs
// - Might be relevant to ad data
// - Might be relevant to encryption
// - Highly repeating patterns in the values with only a few differences
}
}