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

15 lines
332 B
C#

namespace BurnOutSharp.ProtectionType
{
public class Cucko
{
public static string CheckContents(string fileContent)
{
// TODO: Verify this doesn't over-match
if (fileContent.Contains("EASTL"))
return "Cucko (EA Custom)";
return null;
}
}
}