Files
BinaryObjectScanner/BinaryObjectScanner.Models/PlayJ/Constants.cs
Matt Nadareski 473cbc5694 BOS.* -> BOS.*
2023-03-07 16:59:14 -05:00

9 lines
243 B
C#

namespace BinaryObjectScanner.Models.PlayJ
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0xFF, 0x9D, 0x53, 0x4B };
public const uint SignatureUInt32 = 0x4B539DFF;
}
}