namespace PKHeX.Core { public enum EncounterMatchRating { /// Unused None, /// Matches all data, no other matches will be better. Match, /// Matches most data, might have a better match later. Deferred, /// Matches some data, but will likely have a better match later. PartialMatch, } }