diff --git a/BurnOutSharp/FileType/BFPK.cs b/BurnOutSharp/FileType/BFPK.cs index 3f7b29b1..c9568202 100644 --- a/BurnOutSharp/FileType/BFPK.cs +++ b/BurnOutSharp/FileType/BFPK.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.IO; using System.Text; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Compressors; using SharpCompress.Compressors.Deflate; diff --git a/BurnOutSharp/FileType/BZip2.cs b/BurnOutSharp/FileType/BZip2.cs index 459599b8..725a24c0 100644 --- a/BurnOutSharp/FileType/BZip2.cs +++ b/BurnOutSharp/FileType/BZip2.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Compressors; using SharpCompress.Compressors.BZip2; diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 9eadf942..87276f05 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -5,6 +5,7 @@ using System.Text; using System.Threading.Tasks; using BurnOutSharp.ExecutableType.Microsoft.NE; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.FileType diff --git a/BurnOutSharp/FileType/GZIP.cs b/BurnOutSharp/FileType/GZIP.cs index 79994204..09668a77 100644 --- a/BurnOutSharp/FileType/GZIP.cs +++ b/BurnOutSharp/FileType/GZIP.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Archives; using SharpCompress.Archives.GZip; diff --git a/BurnOutSharp/FileType/InstallShieldArchiveV3.cs b/BurnOutSharp/FileType/InstallShieldArchiveV3.cs index 058540fe..1157fa56 100644 --- a/BurnOutSharp/FileType/InstallShieldArchiveV3.cs +++ b/BurnOutSharp/FileType/InstallShieldArchiveV3.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.IO; using System.Linq; using System.Text.RegularExpressions; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using UnshieldSharp.Archive; diff --git a/BurnOutSharp/FileType/InstallShieldCAB.cs b/BurnOutSharp/FileType/InstallShieldCAB.cs index da963021..6520d661 100644 --- a/BurnOutSharp/FileType/InstallShieldCAB.cs +++ b/BurnOutSharp/FileType/InstallShieldCAB.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.IO; using System.Text.RegularExpressions; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using UnshieldSharp.Cabinet; diff --git a/BurnOutSharp/FileType/MPQ.cs b/BurnOutSharp/FileType/MPQ.cs index c83a82c7..e7d2c10e 100644 --- a/BurnOutSharp/FileType/MPQ.cs +++ b/BurnOutSharp/FileType/MPQ.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using StormLibSharp; diff --git a/BurnOutSharp/FileType/MSI.cs b/BurnOutSharp/FileType/MSI.cs index e93b6841..729efe62 100644 --- a/BurnOutSharp/FileType/MSI.cs +++ b/BurnOutSharp/FileType/MSI.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using WixToolset.Dtf.WindowsInstaller; diff --git a/BurnOutSharp/FileType/MicrosoftCAB.cs b/BurnOutSharp/FileType/MicrosoftCAB.cs index 502e59d0..d9fc0349 100644 --- a/BurnOutSharp/FileType/MicrosoftCAB.cs +++ b/BurnOutSharp/FileType/MicrosoftCAB.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using LibMSPackN; diff --git a/BurnOutSharp/FileType/PKZIP.cs b/BurnOutSharp/FileType/PKZIP.cs index 4cb2360c..7908a7ea 100644 --- a/BurnOutSharp/FileType/PKZIP.cs +++ b/BurnOutSharp/FileType/PKZIP.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Archives; using SharpCompress.Archives.Zip; diff --git a/BurnOutSharp/FileType/RAR.cs b/BurnOutSharp/FileType/RAR.cs index 0e037516..8f173acf 100644 --- a/BurnOutSharp/FileType/RAR.cs +++ b/BurnOutSharp/FileType/RAR.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Archives; using SharpCompress.Archives.Rar; diff --git a/BurnOutSharp/FileType/SevenZip.cs b/BurnOutSharp/FileType/SevenZip.cs index 6b920838..49a997f3 100644 --- a/BurnOutSharp/FileType/SevenZip.cs +++ b/BurnOutSharp/FileType/SevenZip.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Archives; using SharpCompress.Archives.SevenZip; diff --git a/BurnOutSharp/FileType/TapeArchive.cs b/BurnOutSharp/FileType/TapeArchive.cs index c7f4493d..a3a19d6d 100644 --- a/BurnOutSharp/FileType/TapeArchive.cs +++ b/BurnOutSharp/FileType/TapeArchive.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Archives; using SharpCompress.Archives.Tar; diff --git a/BurnOutSharp/FileType/Textfile.cs b/BurnOutSharp/FileType/Textfile.cs index e0bd1f47..d7baef4c 100644 --- a/BurnOutSharp/FileType/Textfile.cs +++ b/BurnOutSharp/FileType/Textfile.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.IO; using System.Text; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.FileType diff --git a/BurnOutSharp/FileType/Valve.cs b/BurnOutSharp/FileType/Valve.cs index a674b66b..9b386d1a 100644 --- a/BurnOutSharp/FileType/Valve.cs +++ b/BurnOutSharp/FileType/Valve.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Runtime.InteropServices; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.FileType diff --git a/BurnOutSharp/FileType/XZ.cs b/BurnOutSharp/FileType/XZ.cs index 07c3f176..b9bb3b15 100644 --- a/BurnOutSharp/FileType/XZ.cs +++ b/BurnOutSharp/FileType/XZ.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; using SharpCompress.Compressors.Xz; diff --git a/BurnOutSharp/IContentCheck.cs b/BurnOutSharp/Interfaces/IContentCheck.cs similarity index 94% rename from BurnOutSharp/IContentCheck.cs rename to BurnOutSharp/Interfaces/IContentCheck.cs index 95071b66..1f501197 100644 --- a/BurnOutSharp/IContentCheck.cs +++ b/BurnOutSharp/Interfaces/IContentCheck.cs @@ -1,4 +1,4 @@ -namespace BurnOutSharp +namespace BurnOutSharp.Interfaces { internal interface IContentCheck { diff --git a/BurnOutSharp/INewExecutableCheck.cs b/BurnOutSharp/Interfaces/INewExecutableCheck.cs similarity index 94% rename from BurnOutSharp/INewExecutableCheck.cs rename to BurnOutSharp/Interfaces/INewExecutableCheck.cs index 9718fa13..85a30472 100644 --- a/BurnOutSharp/INewExecutableCheck.cs +++ b/BurnOutSharp/Interfaces/INewExecutableCheck.cs @@ -1,6 +1,6 @@ using BurnOutSharp.ExecutableType.Microsoft.NE; -namespace BurnOutSharp +namespace BurnOutSharp.Interfaces { internal interface INewExecutableCheck { diff --git a/BurnOutSharp/IPathCheck.cs b/BurnOutSharp/Interfaces/IPathCheck.cs similarity index 96% rename from BurnOutSharp/IPathCheck.cs rename to BurnOutSharp/Interfaces/IPathCheck.cs index e296612e..8b20c31d 100644 --- a/BurnOutSharp/IPathCheck.cs +++ b/BurnOutSharp/Interfaces/IPathCheck.cs @@ -1,7 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; -namespace BurnOutSharp +namespace BurnOutSharp.Interfaces { internal interface IPathCheck { diff --git a/BurnOutSharp/IPortableExecutableCheck.cs b/BurnOutSharp/Interfaces/IPortableExecutableCheck.cs similarity index 95% rename from BurnOutSharp/IPortableExecutableCheck.cs rename to BurnOutSharp/Interfaces/IPortableExecutableCheck.cs index e15055e3..656a50ad 100644 --- a/BurnOutSharp/IPortableExecutableCheck.cs +++ b/BurnOutSharp/Interfaces/IPortableExecutableCheck.cs @@ -1,6 +1,6 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; -namespace BurnOutSharp +namespace BurnOutSharp.Interfaces { internal interface IPortableExecutableCheck { diff --git a/BurnOutSharp/IScannable.cs b/BurnOutSharp/Interfaces/IScannable.cs similarity index 97% rename from BurnOutSharp/IScannable.cs rename to BurnOutSharp/Interfaces/IScannable.cs index 5501ff9a..45628abb 100644 --- a/BurnOutSharp/IScannable.cs +++ b/BurnOutSharp/Interfaces/IScannable.cs @@ -1,7 +1,7 @@ using System.Collections.Concurrent; using System.IO; -namespace BurnOutSharp +namespace BurnOutSharp.Interfaces { internal interface IScannable { diff --git a/BurnOutSharp/PackerType/AdvancedInstaller.cs b/BurnOutSharp/PackerType/AdvancedInstaller.cs index 7945c729..312f6fa3 100644 --- a/BurnOutSharp/PackerType/AdvancedInstaller.cs +++ b/BurnOutSharp/PackerType/AdvancedInstaller.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/Armadillo.cs b/BurnOutSharp/PackerType/Armadillo.cs index 102841e4..dcb6ccdb 100644 --- a/BurnOutSharp/PackerType/Armadillo.cs +++ b/BurnOutSharp/PackerType/Armadillo.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Linq; -using System.Text; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/AutoPlayMediaStudio.cs b/BurnOutSharp/PackerType/AutoPlayMediaStudio.cs index d31d1381..bf2c76dc 100644 --- a/BurnOutSharp/PackerType/AutoPlayMediaStudio.cs +++ b/BurnOutSharp/PackerType/AutoPlayMediaStudio.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/CExe.cs b/BurnOutSharp/PackerType/CExe.cs index 1c476bfb..d475f6f1 100644 --- a/BurnOutSharp/PackerType/CExe.cs +++ b/BurnOutSharp/PackerType/CExe.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/EXEStealth.cs b/BurnOutSharp/PackerType/EXEStealth.cs index 638a8fe5..0c80f486 100644 --- a/BurnOutSharp/PackerType/EXEStealth.cs +++ b/BurnOutSharp/PackerType/EXEStealth.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/GenteeInstaller.cs b/BurnOutSharp/PackerType/GenteeInstaller.cs index cf2f6122..74097eae 100644 --- a/BurnOutSharp/PackerType/GenteeInstaller.cs +++ b/BurnOutSharp/PackerType/GenteeInstaller.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/InnoSetup.cs b/BurnOutSharp/PackerType/InnoSetup.cs index 11501e58..e211f9a2 100644 --- a/BurnOutSharp/PackerType/InnoSetup.cs +++ b/BurnOutSharp/PackerType/InnoSetup.cs @@ -6,6 +6,7 @@ using System.Linq; using System.Text; using BurnOutSharp.ExecutableType.Microsoft.NE; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/InstallAnywhere.cs b/BurnOutSharp/PackerType/InstallAnywhere.cs index c8a3ed40..bf249c92 100644 --- a/BurnOutSharp/PackerType/InstallAnywhere.cs +++ b/BurnOutSharp/PackerType/InstallAnywhere.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Concurrent; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/InstallerVISE.cs b/BurnOutSharp/PackerType/InstallerVISE.cs index 2359be45..2ed6cf84 100644 --- a/BurnOutSharp/PackerType/InstallerVISE.cs +++ b/BurnOutSharp/PackerType/InstallerVISE.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/IntelInstallationFramework.cs b/BurnOutSharp/PackerType/IntelInstallationFramework.cs index 12601df8..298f470b 100644 --- a/BurnOutSharp/PackerType/IntelInstallationFramework.cs +++ b/BurnOutSharp/PackerType/IntelInstallationFramework.cs @@ -1,5 +1,6 @@ using System; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/MicrosoftCABSFX.cs b/BurnOutSharp/PackerType/MicrosoftCABSFX.cs index 7bbdc07a..1e493f9f 100644 --- a/BurnOutSharp/PackerType/MicrosoftCABSFX.cs +++ b/BurnOutSharp/PackerType/MicrosoftCABSFX.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/PackerType/NSIS.cs b/BurnOutSharp/PackerType/NSIS.cs index cfcb520f..885cf1eb 100644 --- a/BurnOutSharp/PackerType/NSIS.cs +++ b/BurnOutSharp/PackerType/NSIS.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/PECompact.cs b/BurnOutSharp/PackerType/PECompact.cs index b32e76ae..f222c76f 100644 --- a/BurnOutSharp/PackerType/PECompact.cs +++ b/BurnOutSharp/PackerType/PECompact.cs @@ -1,4 +1,5 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.PackerType { diff --git a/BurnOutSharp/PackerType/Petite.cs b/BurnOutSharp/PackerType/Petite.cs index 188c58ce..ebc2e2e9 100644 --- a/BurnOutSharp/PackerType/Petite.cs +++ b/BurnOutSharp/PackerType/Petite.cs @@ -1,4 +1,5 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.PackerType { diff --git a/BurnOutSharp/PackerType/SetupFactory.cs b/BurnOutSharp/PackerType/SetupFactory.cs index 5e564b69..72eaf260 100644 --- a/BurnOutSharp/PackerType/SetupFactory.cs +++ b/BurnOutSharp/PackerType/SetupFactory.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/Shrinker.cs b/BurnOutSharp/PackerType/Shrinker.cs index 7f567d68..f7ddd4c8 100644 --- a/BurnOutSharp/PackerType/Shrinker.cs +++ b/BurnOutSharp/PackerType/Shrinker.cs @@ -1,6 +1,5 @@ -using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; -using BurnOutSharp.Matching; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.PackerType { diff --git a/BurnOutSharp/PackerType/UPX.cs b/BurnOutSharp/PackerType/UPX.cs index 2bcb2b3c..455baae9 100644 --- a/BurnOutSharp/PackerType/UPX.cs +++ b/BurnOutSharp/PackerType/UPX.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Text; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/PackerType/WinRARSFX.cs b/BurnOutSharp/PackerType/WinRARSFX.cs index 481dd32b..ef98ba0d 100644 --- a/BurnOutSharp/PackerType/WinRARSFX.cs +++ b/BurnOutSharp/PackerType/WinRARSFX.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; using SharpCompress.Archives; diff --git a/BurnOutSharp/PackerType/WinZipSFX.cs b/BurnOutSharp/PackerType/WinZipSFX.cs index 2a55be30..f2135676 100644 --- a/BurnOutSharp/PackerType/WinZipSFX.cs +++ b/BurnOutSharp/PackerType/WinZipSFX.cs @@ -5,6 +5,7 @@ using System.IO; using BurnOutSharp.ExecutableType.Microsoft; using BurnOutSharp.ExecutableType.Microsoft.NE; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; using SharpCompress.Archives; diff --git a/BurnOutSharp/PackerType/WiseInstaller.cs b/BurnOutSharp/PackerType/WiseInstaller.cs index dab675a0..b57d293d 100644 --- a/BurnOutSharp/PackerType/WiseInstaller.cs +++ b/BurnOutSharp/PackerType/WiseInstaller.cs @@ -4,6 +4,7 @@ using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.NE; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; using Wise = WiseUnpacker.WiseUnpacker; diff --git a/BurnOutSharp/PackerType/dotFuscator.cs b/BurnOutSharp/PackerType/dotFuscator.cs index 57a4f225..c30b219b 100644 --- a/BurnOutSharp/PackerType/dotFuscator.cs +++ b/BurnOutSharp/PackerType/dotFuscator.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.PackerType diff --git a/BurnOutSharp/ProtectionType/AACS.cs b/BurnOutSharp/ProtectionType/AACS.cs index 13edf034..eec2e3cf 100644 --- a/BurnOutSharp/ProtectionType/AACS.cs +++ b/BurnOutSharp/ProtectionType/AACS.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/ActiveMARK.cs b/BurnOutSharp/ProtectionType/ActiveMARK.cs index 7369c4c4..d132d213 100644 --- a/BurnOutSharp/ProtectionType/ActiveMARK.cs +++ b/BurnOutSharp/ProtectionType/ActiveMARK.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/AlphaDVD.cs b/BurnOutSharp/ProtectionType/AlphaDVD.cs index 7e6e4c56..bfd1badb 100644 --- a/BurnOutSharp/ProtectionType/AlphaDVD.cs +++ b/BurnOutSharp/ProtectionType/AlphaDVD.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/AlphaROM.cs b/BurnOutSharp/ProtectionType/AlphaROM.cs index 1de66526..091cea2e 100644 --- a/BurnOutSharp/ProtectionType/AlphaROM.cs +++ b/BurnOutSharp/ProtectionType/AlphaROM.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/BDPlus.cs b/BurnOutSharp/ProtectionType/BDPlus.cs index 69337e39..69345993 100644 --- a/BurnOutSharp/ProtectionType/BDPlus.cs +++ b/BurnOutSharp/ProtectionType/BDPlus.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Bitpool.cs b/BurnOutSharp/ProtectionType/Bitpool.cs index c604322a..6958fcce 100644 --- a/BurnOutSharp/ProtectionType/Bitpool.cs +++ b/BurnOutSharp/ProtectionType/Bitpool.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/ByteShield.cs b/BurnOutSharp/ProtectionType/ByteShield.cs index 74b6d717..cbd25833 100644 --- a/BurnOutSharp/ProtectionType/ByteShield.cs +++ b/BurnOutSharp/ProtectionType/ByteShield.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CDCheck.cs b/BurnOutSharp/ProtectionType/CDCheck.cs index 1d5c333c..093173f6 100644 --- a/BurnOutSharp/ProtectionType/CDCheck.cs +++ b/BurnOutSharp/ProtectionType/CDCheck.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CDDVDCops.cs b/BurnOutSharp/ProtectionType/CDDVDCops.cs index 96c6f8a9..8f11221d 100644 --- a/BurnOutSharp/ProtectionType/CDDVDCops.cs +++ b/BurnOutSharp/ProtectionType/CDDVDCops.cs @@ -4,6 +4,7 @@ using System.Collections.Generic; using System.Linq; using BurnOutSharp.ExecutableType.Microsoft.NE; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CDKey.cs b/BurnOutSharp/ProtectionType/CDKey.cs index 6506c3d8..ac44997d 100644 --- a/BurnOutSharp/ProtectionType/CDKey.cs +++ b/BurnOutSharp/ProtectionType/CDKey.cs @@ -1,5 +1,6 @@ using System; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/CDLock.cs b/BurnOutSharp/ProtectionType/CDLock.cs index d72fb479..d43cc5e9 100644 --- a/BurnOutSharp/ProtectionType/CDLock.cs +++ b/BurnOutSharp/ProtectionType/CDLock.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CDProtector.cs b/BurnOutSharp/ProtectionType/CDProtector.cs index 4bcf1639..e9c51336 100644 --- a/BurnOutSharp/ProtectionType/CDProtector.cs +++ b/BurnOutSharp/ProtectionType/CDProtector.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CDSHiELDSE.cs b/BurnOutSharp/ProtectionType/CDSHiELDSE.cs index fe82f424..736e7ad7 100644 --- a/BurnOutSharp/ProtectionType/CDSHiELDSE.cs +++ b/BurnOutSharp/ProtectionType/CDSHiELDSE.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CDX.cs b/BurnOutSharp/ProtectionType/CDX.cs index 7ed6fba4..a1544a0d 100644 --- a/BurnOutSharp/ProtectionType/CDX.cs +++ b/BurnOutSharp/ProtectionType/CDX.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CactusDataShield.cs b/BurnOutSharp/ProtectionType/CactusDataShield.cs index be0a2955..826e3718 100644 --- a/BurnOutSharp/ProtectionType/CactusDataShield.cs +++ b/BurnOutSharp/ProtectionType/CactusDataShield.cs @@ -5,6 +5,7 @@ using System.IO; using System.Linq; using System.Text; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs b/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs index 31ce9da3..dc58be4a 100644 --- a/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs +++ b/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs @@ -1,4 +1,5 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/CodeLock.cs b/BurnOutSharp/ProtectionType/CodeLock.cs index 37128b7d..dd6dfa89 100644 --- a/BurnOutSharp/ProtectionType/CodeLock.cs +++ b/BurnOutSharp/ProtectionType/CodeLock.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Linq; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/CopyKiller.cs b/BurnOutSharp/ProtectionType/CopyKiller.cs index 624ad460..91b80951 100644 --- a/BurnOutSharp/ProtectionType/CopyKiller.cs +++ b/BurnOutSharp/ProtectionType/CopyKiller.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/DVDCrypt.cs b/BurnOutSharp/ProtectionType/DVDCrypt.cs index c77b4993..c02ae341 100644 --- a/BurnOutSharp/ProtectionType/DVDCrypt.cs +++ b/BurnOutSharp/ProtectionType/DVDCrypt.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/DVDMoviePROTECT.cs b/BurnOutSharp/ProtectionType/DVDMoviePROTECT.cs index a686e3e9..cf43e8cd 100644 --- a/BurnOutSharp/ProtectionType/DVDMoviePROTECT.cs +++ b/BurnOutSharp/ProtectionType/DVDMoviePROTECT.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/DiscGuard.cs b/BurnOutSharp/ProtectionType/DiscGuard.cs index 70643bc3..294bc138 100644 --- a/BurnOutSharp/ProtectionType/DiscGuard.cs +++ b/BurnOutSharp/ProtectionType/DiscGuard.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/ElectronicArts.cs b/BurnOutSharp/ProtectionType/ElectronicArts.cs index 7a45482f..529e73ad 100644 --- a/BurnOutSharp/ProtectionType/ElectronicArts.cs +++ b/BurnOutSharp/ProtectionType/ElectronicArts.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/FreeLock.cs b/BurnOutSharp/ProtectionType/FreeLock.cs index 28a4a4e5..f15cf18a 100644 --- a/BurnOutSharp/ProtectionType/FreeLock.cs +++ b/BurnOutSharp/ProtectionType/FreeLock.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/GFWL.cs b/BurnOutSharp/ProtectionType/GFWL.cs index b020e93c..96444e61 100644 --- a/BurnOutSharp/ProtectionType/GFWL.cs +++ b/BurnOutSharp/ProtectionType/GFWL.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/HexalockAutoLock.cs b/BurnOutSharp/ProtectionType/HexalockAutoLock.cs index 2ab30ba9..14e1aa7f 100644 --- a/BurnOutSharp/ProtectionType/HexalockAutoLock.cs +++ b/BurnOutSharp/ProtectionType/HexalockAutoLock.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/ImpulseReactor.cs b/BurnOutSharp/ProtectionType/ImpulseReactor.cs index 845fd07f..1015ce92 100644 --- a/BurnOutSharp/ProtectionType/ImpulseReactor.cs +++ b/BurnOutSharp/ProtectionType/ImpulseReactor.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/IndyVCD.cs b/BurnOutSharp/ProtectionType/IndyVCD.cs index 4ed993df..b517746b 100644 --- a/BurnOutSharp/ProtectionType/IndyVCD.cs +++ b/BurnOutSharp/ProtectionType/IndyVCD.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Intenium.cs b/BurnOutSharp/ProtectionType/Intenium.cs index 86f22e49..65737a6e 100644 --- a/BurnOutSharp/ProtectionType/Intenium.cs +++ b/BurnOutSharp/ProtectionType/Intenium.cs @@ -1,4 +1,5 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/JoWood.cs b/BurnOutSharp/ProtectionType/JoWood.cs index cbecd171..f975eb03 100644 --- a/BurnOutSharp/ProtectionType/JoWood.cs +++ b/BurnOutSharp/ProtectionType/JoWood.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Key2AudioXS.cs b/BurnOutSharp/ProtectionType/Key2AudioXS.cs index 6fb893a3..e7a3cbf1 100644 --- a/BurnOutSharp/ProtectionType/Key2AudioXS.cs +++ b/BurnOutSharp/ProtectionType/Key2AudioXS.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/KeyLock.cs b/BurnOutSharp/ProtectionType/KeyLock.cs index 93c6311b..355ed303 100644 --- a/BurnOutSharp/ProtectionType/KeyLock.cs +++ b/BurnOutSharp/ProtectionType/KeyLock.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/LaserLok.cs b/BurnOutSharp/ProtectionType/LaserLok.cs index 204cfbbc..c6349c95 100644 --- a/BurnOutSharp/ProtectionType/LaserLok.cs +++ b/BurnOutSharp/ProtectionType/LaserLok.cs @@ -4,6 +4,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/MediaCloQ.cs b/BurnOutSharp/ProtectionType/MediaCloQ.cs index 08cc0643..458cdf88 100644 --- a/BurnOutSharp/ProtectionType/MediaCloQ.cs +++ b/BurnOutSharp/ProtectionType/MediaCloQ.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/MediaMaxCD3.cs b/BurnOutSharp/ProtectionType/MediaMaxCD3.cs index 810b6c8c..97540e52 100644 --- a/BurnOutSharp/ProtectionType/MediaMaxCD3.cs +++ b/BurnOutSharp/ProtectionType/MediaMaxCD3.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/OnlineRegistration.cs b/BurnOutSharp/ProtectionType/OnlineRegistration.cs index 28ff685d..b1fd2a33 100644 --- a/BurnOutSharp/ProtectionType/OnlineRegistration.cs +++ b/BurnOutSharp/ProtectionType/OnlineRegistration.cs @@ -1,5 +1,6 @@ using System; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Tools; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Origin.cs b/BurnOutSharp/ProtectionType/Origin.cs index 4f5f3f8d..a4aaeeb3 100644 --- a/BurnOutSharp/ProtectionType/Origin.cs +++ b/BurnOutSharp/ProtectionType/Origin.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/PSXAntiModchip.cs b/BurnOutSharp/ProtectionType/PSXAntiModchip.cs index e6c8d1e8..c07f21b8 100644 --- a/BurnOutSharp/ProtectionType/PSXAntiModchip.cs +++ b/BurnOutSharp/ProtectionType/PSXAntiModchip.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/ProtectDVDVideo.cs b/BurnOutSharp/ProtectionType/ProtectDVDVideo.cs index 6b08ac10..103bc226 100644 --- a/BurnOutSharp/ProtectionType/ProtectDVDVideo.cs +++ b/BurnOutSharp/ProtectionType/ProtectDVDVideo.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/ProtectDisc.cs b/BurnOutSharp/ProtectionType/ProtectDisc.cs index 731c2191..72036f0d 100644 --- a/BurnOutSharp/ProtectionType/ProtectDisc.cs +++ b/BurnOutSharp/ProtectionType/ProtectDisc.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Text; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/RingPROTECH.cs b/BurnOutSharp/ProtectionType/RingPROTECH.cs index 9f1ca597..37bfaef0 100644 --- a/BurnOutSharp/ProtectionType/RingPROTECH.cs +++ b/BurnOutSharp/ProtectionType/RingPROTECH.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/SVKP.cs b/BurnOutSharp/ProtectionType/SVKP.cs index b77900d5..3c1267f0 100644 --- a/BurnOutSharp/ProtectionType/SVKP.cs +++ b/BurnOutSharp/ProtectionType/SVKP.cs @@ -1,4 +1,5 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/SafeDisc.cs b/BurnOutSharp/ProtectionType/SafeDisc.cs index ba37442a..a5ce1b73 100644 --- a/BurnOutSharp/ProtectionType/SafeDisc.cs +++ b/BurnOutSharp/ProtectionType/SafeDisc.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/SafeLock.cs b/BurnOutSharp/ProtectionType/SafeLock.cs index c4965321..b2d3b240 100644 --- a/BurnOutSharp/ProtectionType/SafeLock.cs +++ b/BurnOutSharp/ProtectionType/SafeLock.cs @@ -1,6 +1,7 @@ using System.IO; using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/SecuROM.cs b/BurnOutSharp/ProtectionType/SecuROM.cs index 68b0d0da..a90979c7 100644 --- a/BurnOutSharp/ProtectionType/SecuROM.cs +++ b/BurnOutSharp/ProtectionType/SecuROM.cs @@ -4,6 +4,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/SmartE.cs b/BurnOutSharp/ProtectionType/SmartE.cs index 0a86ef50..be068f3a 100644 --- a/BurnOutSharp/ProtectionType/SmartE.cs +++ b/BurnOutSharp/ProtectionType/SmartE.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; using BurnOutSharp.ExecutableType.Microsoft.PE.Headers; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/SoftLock.cs b/BurnOutSharp/ProtectionType/SoftLock.cs index 6a945a86..ad90e62e 100644 --- a/BurnOutSharp/ProtectionType/SoftLock.cs +++ b/BurnOutSharp/ProtectionType/SoftLock.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/SolidShield.cs b/BurnOutSharp/ProtectionType/SolidShield.cs index 6330f8ba..95c9b047 100644 --- a/BurnOutSharp/ProtectionType/SolidShield.cs +++ b/BurnOutSharp/ProtectionType/SolidShield.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/StarForce.cs b/BurnOutSharp/ProtectionType/StarForce.cs index 97434a9e..7ae81bd2 100644 --- a/BurnOutSharp/ProtectionType/StarForce.cs +++ b/BurnOutSharp/ProtectionType/StarForce.cs @@ -2,6 +2,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/Steam.cs b/BurnOutSharp/ProtectionType/Steam.cs index ffd6a16e..8b2c9108 100644 --- a/BurnOutSharp/ProtectionType/Steam.cs +++ b/BurnOutSharp/ProtectionType/Steam.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/Sysiphus.cs b/BurnOutSharp/ProtectionType/Sysiphus.cs index 0f824c0c..77bb2771 100644 --- a/BurnOutSharp/ProtectionType/Sysiphus.cs +++ b/BurnOutSharp/ProtectionType/Sysiphus.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/TZCopyProtector.cs b/BurnOutSharp/ProtectionType/TZCopyProtector.cs index 4cdddf24..57087b61 100644 --- a/BurnOutSharp/ProtectionType/TZCopyProtector.cs +++ b/BurnOutSharp/ProtectionType/TZCopyProtector.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Tages.cs b/BurnOutSharp/ProtectionType/Tages.cs index a0711483..3360cb92 100644 --- a/BurnOutSharp/ProtectionType/Tages.cs +++ b/BurnOutSharp/ProtectionType/Tages.cs @@ -3,6 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; using BurnOutSharp.Tools; diff --git a/BurnOutSharp/ProtectionType/ThreePLock.cs b/BurnOutSharp/ProtectionType/ThreePLock.cs index b99ef401..a85188a9 100644 --- a/BurnOutSharp/ProtectionType/ThreePLock.cs +++ b/BurnOutSharp/ProtectionType/ThreePLock.cs @@ -1,4 +1,5 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/ThreeTwoOneStudios.cs b/BurnOutSharp/ProtectionType/ThreeTwoOneStudios.cs index 13739169..a0936541 100644 --- a/BurnOutSharp/ProtectionType/ThreeTwoOneStudios.cs +++ b/BurnOutSharp/ProtectionType/ThreeTwoOneStudios.cs @@ -1,4 +1,5 @@ using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; namespace BurnOutSharp.ProtectionType { diff --git a/BurnOutSharp/ProtectionType/TivolaRingProtection.cs b/BurnOutSharp/ProtectionType/TivolaRingProtection.cs index 9c8750e5..ebfa9201 100644 --- a/BurnOutSharp/ProtectionType/TivolaRingProtection.cs +++ b/BurnOutSharp/ProtectionType/TivolaRingProtection.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Uplay.cs b/BurnOutSharp/ProtectionType/Uplay.cs index 5070cded..59ac08a2 100644 --- a/BurnOutSharp/ProtectionType/Uplay.cs +++ b/BurnOutSharp/ProtectionType/Uplay.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/WTMCDProtect.cs b/BurnOutSharp/ProtectionType/WTMCDProtect.cs index 1c2fdda2..ba196fa0 100644 --- a/BurnOutSharp/ProtectionType/WTMCDProtect.cs +++ b/BurnOutSharp/ProtectionType/WTMCDProtect.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using BurnOutSharp.ExecutableType.Microsoft.PE; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Winlock.cs b/BurnOutSharp/ProtectionType/Winlock.cs index 124911d1..a9761e74 100644 --- a/BurnOutSharp/ProtectionType/Winlock.cs +++ b/BurnOutSharp/ProtectionType/Winlock.cs @@ -1,5 +1,6 @@ using System.Collections.Concurrent; using System.Collections.Generic; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/XCP.cs b/BurnOutSharp/ProtectionType/XCP.cs index ed399137..8f3366cb 100644 --- a/BurnOutSharp/ProtectionType/XCP.cs +++ b/BurnOutSharp/ProtectionType/XCP.cs @@ -5,6 +5,7 @@ using System.IO; using System.Linq; using BurnOutSharp.ExecutableType.Microsoft.PE; using BurnOutSharp.FileType; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ProtectionType/Zzxzz.cs b/BurnOutSharp/ProtectionType/Zzxzz.cs index b3e59571..e0bd125d 100644 --- a/BurnOutSharp/ProtectionType/Zzxzz.cs +++ b/BurnOutSharp/ProtectionType/Zzxzz.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; +using BurnOutSharp.Interfaces; using BurnOutSharp.Matching; namespace BurnOutSharp.ProtectionType diff --git a/BurnOutSharp/ScanningClasses.cs b/BurnOutSharp/ScanningClasses.cs index c246910d..8657c739 100644 --- a/BurnOutSharp/ScanningClasses.cs +++ b/BurnOutSharp/ScanningClasses.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; +using BurnOutSharp.Interfaces; namespace BurnOutSharp {