mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
9 lines
243 B
C#
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;
|
|
}
|
|
} |