mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-09 21:32:11 +00:00
14 lines
276 B
C#
14 lines
276 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class AlphaROM
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains("SETTEC"))
|
|
return "Alpha-ROM";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|