PKHeX/PKHeX.Core/PKM/Searching/CloneDetectionMethod.cs

24 lines
536 B
C#
Raw Normal View History

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