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