mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 21:31:30 +00:00
11 lines
297 B
C#
11 lines
297 B
C#
namespace BinaryObjectScanner.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;
|
|
}
|
|
} |