mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
17 lines
450 B
C#
17 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,
|
|
}
|
|
}
|