Files
BinaryObjectScanner/BurnOutSharp.Models/PAK/Constants.cs
2022-12-28 15:03:41 -08:00

11 lines
289 B
C#

namespace BurnOutSharp.Models.PAK
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x50, 0x41, 0x43, 0x4b };
public const string SignatureString = "PACK";
public const uint SignatureUInt32 = 0x4b434150;
}
}