mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 21:33:08 +00:00
15 lines
343 B
C#
15 lines
343 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class Armadillo
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains(".nicode" + (char)0x00)
|
|
|| fileContent.Contains("ARMDEBUG"))
|
|
return "Armadillo";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|