mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-06 06:11:45 +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.
20 lines
760 B
C#
20 lines
760 B
C#
namespace SabreTools.Data.Models.VDF
|
|
{
|
|
public static class Constants
|
|
{
|
|
/// <summary>
|
|
/// Top-level item (and thus also first 5 bytes) of Steam2 (sis/sim/sid) retail installers
|
|
/// </summary>
|
|
public static readonly byte[] SteamSimSidSisSignatureBytes = [0x22, 0x53, 0x4B, 0x55, 0x22]; // "SKU"
|
|
|
|
public static readonly string SteamSimSidSisSignatureString = "\"SKU\"";
|
|
|
|
/// <summary>
|
|
/// Top-level item (and thus also first 5 bytes) of Steam3 (sis/csm/csd) retail installers
|
|
/// </summary>
|
|
public static readonly byte[] SteamCsmCsdSisSignatureBytes = [0x22, 0x73, 0x6B, 0x75, 0x22]; // "sku"
|
|
|
|
public static readonly string SteamCsmCsdSisSignatureString = "\"sku\"";
|
|
}
|
|
}
|