Files
BinaryObjectScanner/BurnOutSharp/ProtectionType/AlphaROM.cs

14 lines
276 B
C#
Raw Normal View History

namespace BurnOutSharp.ProtectionType
{
public class AlphaROM
{
public static string CheckContents(string fileContent)
{
if (fileContent.Contains("SETTEC"))
return "Alpha-ROM";
return null;
}
}
}