namespace PKHeX.Core.Searching; /// /// Search option to check for clones. /// public enum CloneDetectionMethod { /// /// Skip checking for cloned data. /// None, /// /// Check for clones by creating a hash of file name data. /// HashDetails, /// /// Check for clones by referencing the PID (or IVs for Gen1/2). /// HashPID, }