2018-08-17 03:06:40 +00:00
|
|
|
namespace PKHeX.Core.Searching
|
|
|
|
{
|
2021-03-24 04:20:02 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Search option to check for clones.
|
|
|
|
/// </summary>
|
2018-08-17 03:06:40 +00:00
|
|
|
public enum CloneDetectionMethod
|
|
|
|
{
|
2021-03-24 04:20:02 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Skip checking for cloned data.
|
|
|
|
/// </summary>
|
2018-08-17 03:06:40 +00:00
|
|
|
None,
|
2021-03-24 04:20:02 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Check for clones by creating a hash of file name data.
|
|
|
|
/// </summary>
|
2018-08-17 03:06:40 +00:00
|
|
|
HashDetails,
|
2021-03-24 04:20:02 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Check for clones by referencing the PID (or IVs for Gen1/2).
|
|
|
|
/// </summary>
|
2018-08-17 03:06:40 +00:00
|
|
|
HashPID,
|
|
|
|
}
|
2021-03-24 04:20:02 +00:00
|
|
|
}
|