Separate protections into their own classes

This commit is contained in:
Matt Nadareski
2019-09-27 23:52:24 -07:00
parent 9e4836826d
commit 550086791b
82 changed files with 3675 additions and 1209 deletions

View File

@@ -0,0 +1,17 @@
namespace BurnOutSharp.ProtectionType
{
public class ThreePLock
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains(".ldr")
|| fileContent.Contains(".ldt"))
// || fileContent.Contains("Y" + (char)0xC3 + "U" + (char)0x8B + (char)0xEC + (char)0x83 + (char)0xEC + "0SVW")
{
return "3PLock";
}
return null;
}
}
}