mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
9 lines
180 B
C#
9 lines
180 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface IEncounterMatch
|
|||
|
{
|
|||
|
bool IsMatchExact(PKM pkm, DexLevel dl);
|
|||
|
EncounterMatchRating GetMatchRating(PKM pkm);
|
|||
|
}
|
|||
|
}
|