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

14 lines
283 B
C#

namespace BurnOutSharp.ProtectionType
{
public class CDSHiELDSE
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains("~0017.tmp"))
return "CDSHiELD SE";
return null;
}
}
}