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

14 lines
292 B
C#

namespace BurnOutSharp.ProtectionType
{
public class CengaProtectDVD
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains(".cenega"))
return "Cenega ProtectDVD";
return null;
}
}
}