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

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;
}
}
}