mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-15 18:53:03 +00:00
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.
25 lines
756 B
C#
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
|
|
}
|
|
}
|