Files
SabreTools.Models/PlayJ/Constants.cs
2023-09-04 00:12:49 -04:00

9 lines
234 B
C#

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