mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
11 lines
288 B
C#
11 lines
288 B
C#
namespace SabreTools.Models.BFPK
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0x42, 0x46, 0x50, 0x4b };
|
|
|
|
public const string SignatureString = "BFPK";
|
|
|
|
public const uint SignatureUInt32 = 0x4b504642;
|
|
}
|
|
} |