Better naming

This commit is contained in:
Matt Nadareski
2022-05-01 17:17:15 -07:00
parent 2dd3e21ea6
commit f9f2e0d932
65 changed files with 149 additions and 170 deletions

View File

@@ -2,7 +2,7 @@
namespace BurnOutSharp.ProtectionType
{
public class Intenium : IPEContentCheck
public class Intenium : IPortableExecutableCheck
{
/*
* Possible strings for finding INTENIUM Trial & Buy Protection
@@ -21,7 +21,7 @@ namespace BurnOutSharp.ProtectionType
*/
/// <inheritdoc/>
public string CheckPEContents(string file, PortableExecutable pex, bool includeDebug)
public string CheckPortableExecutable(string file, PortableExecutable pex, bool includeDebug)
{
// Get the sections from the executable, if possible
var sections = pex?.SectionTable;