mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-26 10:44:07 -05:00
* Extract logic, finish impl for switch era * Extract trash checks to static class * Reduce some allocations in OT name compares
7 lines
107 B
C#
7 lines
107 B
C#
namespace PKHeX.Core;
|
|
|
|
public interface ITrashUnderlaySpecies
|
|
{
|
|
bool IsTrashUnderlaySpecies(PKM pk);
|
|
}
|