Files
BinaryObjectScanner/BurnOutSharp/ProtectionType/KeyLock.cs
2019-09-27 23:52:24 -07:00

14 lines
293 B
C#

namespace BurnOutSharp.ProtectionType
{
public class KeyLock
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains("KEY-LOCK COMMAND"))
return "Key-Lock (Dongle)";
return null;
}
}
}