From 81f6e2057e548d6c952b6f33434f61238aa00cb9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 28 Dec 2022 15:37:09 -0800 Subject: [PATCH] Add note for future work --- BurnOutSharp/Tools/Utilities.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BurnOutSharp/Tools/Utilities.cs b/BurnOutSharp/Tools/Utilities.cs index 932ec652..06e6d767 100644 --- a/BurnOutSharp/Tools/Utilities.cs +++ b/BurnOutSharp/Tools/Utilities.cs @@ -21,6 +21,7 @@ namespace BurnOutSharp.Tools if (magic == null || magic.Length == 0) return SupportedFileType.UNKNOWN; + // TODO: For all modelled types, use the constants instead of hardcoded values here #region BFPK if (magic.StartsWith(new byte?[] { 0x42, 0x46, 0x50, 0x4b }))