namespace PKHeX.Core;
///
/// Enumerates encounter match quality.
///
public enum EncounterMatchRating
{
/// Matches all data, no other matches will be better.
Match,
/// Matches most data, might have a better match later.
Deferred,
/// Matches most data, might have a better match later. Less preferred than due to small errors in secondary data.
DeferredErrors,
/// Matches some data, but will likely have a better match later.
PartialMatch,
/// Unused -- only used as an initial "max" value that anything else will be more suitable of a match.
MaxNotMatch,
}