mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
14 lines
350 B
C#
14 lines
350 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class RingPROTECH
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains((char)0x00 + "Allocator" + (char)0x00 + (char)0x00 + (char)0x00 + (char)0x00))
|
|
return "Ring PROTECH";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|