mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 13:46:03 +00:00
14 lines
283 B
C#
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;
|
|
}
|
|
}
|
|
}
|