namespace PKHeX.Core { 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 None, } }