2023-03-09 13:26:20 -05:00
|
|
|
|
namespace BurnOutSharp
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Scanning options
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class Options
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Determines whether archives are decompressed and scanned
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool ScanArchives { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Determines if content matches are used or not
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool ScanContents { get; set; }
|
|
|
|
|
|
|
2023-03-21 10:42:14 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Determines if game engines are counted as detected protections or not
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool ScanGameEngines { get; set; }
|
|
|
|
|
|
|
2023-03-09 13:26:20 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Determines if packers are counted as detected protections or not
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool ScanPackers { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Determines if path matches are used or not
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool ScanPaths { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Determines if debug information is output or not
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool IncludeDebug { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|