mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 13:46:03 +00:00
9 lines
236 B
C#
9 lines
236 B
C#
namespace BurnOutSharp.Models.PlayJ
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0xFF, 0x9D, 0x53, 0x4B };
|
|
|
|
public const uint SignatureUInt32 = 0x4B539DFF;
|
|
}
|
|
} |