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

11 lines
287 B
C#

namespace SabreTools.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;
}
}