Files

11 lines
297 B
C#
Raw Permalink Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.BFPK
2022-12-28 09:57:22 -08:00
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x42, 0x46, 0x50, 0x4b };
public const string SignatureString = "BFPK";
2022-12-28 10:21:19 -08:00
public const uint SignatureUInt32 = 0x4b504642;
2022-12-28 09:57:22 -08:00
}
}