mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-16 03:03:06 +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.
18 lines
568 B
C#
18 lines
568 B
C#
namespace SabreTools.Data.Models.LZ
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string KWAJPrefix = "KWAJ";
|
|
|
|
public static readonly byte[] KWAJSignatureBytes = [0x4B, 0x57, 0x41, 0x4A, 0x88, 0xF0, 0x27, 0xD1];
|
|
|
|
public const string QBasicPrefix = "SZ ";
|
|
|
|
public static readonly byte[] QBasicSignatureBytes = [0x53, 0x5A, 0x20, 0x88, 0xF0, 0x27, 0x33, 0xD1];
|
|
|
|
public const string SZDDPrefix = "SZDD";
|
|
|
|
public static readonly byte[] SZDDSignatureBytes = [0x53, 0x5A, 0x44, 0x44, 0x88, 0xF0, 0x27, 0x33];
|
|
}
|
|
}
|