mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
* Add model for sim file * Add sim parsing for steam2 installer set * First round of fixes
11 lines
348 B
C#
11 lines
348 B
C#
namespace SabreTools.Data.Models.Steam2Installer
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SimSignatureBytes = [0x1F, 0x4C, 0xD0, 0x3F];
|
|
|
|
/// <remarks>All other values in the structure are little endian, assuming this is too</remarks>
|
|
public const uint SimSignatureUInt32 = 0x3FD04C1F;
|
|
}
|
|
}
|