mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-19 20:28:24 -05:00
18 lines
450 B
C#
18 lines
450 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum EncounterMatchRating
|
|
{
|
|
/// <summary> Unused </summary>
|
|
None,
|
|
|
|
/// <summary> Matches all data, no other matches will be better. </summary>
|
|
Match,
|
|
|
|
/// <summary> Matches most data, might have a better match later. </summary>
|
|
Deferred,
|
|
|
|
/// <summary> Matches some data, but will likely have a better match later. </summary>
|
|
PartialMatch,
|
|
}
|
|
}
|