From 404b2889ffb7b694aa993172472630a75caeb02c Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 28 Dec 2022 15:13:38 -0800 Subject: [PATCH] Add SFFS constants --- BurnOutSharp.Models/SFFS/Constants.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 BurnOutSharp.Models/SFFS/Constants.cs diff --git a/BurnOutSharp.Models/SFFS/Constants.cs b/BurnOutSharp.Models/SFFS/Constants.cs new file mode 100644 index 00000000..e3a1eb1f --- /dev/null +++ b/BurnOutSharp.Models/SFFS/Constants.cs @@ -0,0 +1,11 @@ +namespace BurnOutSharp.Models.SFFS +{ + public static class Constants + { + public static readonly byte[] SignatureBytes = new byte[] { 0x53, 0x46, 0x46, 0x53 }; + + public const string SignatureString = "SFFS"; + + public const uint SignatureUInt32 = 0x53464653; + } +} \ No newline at end of file