PKHeX/PKHeX.Core/Legality/Encounters/Templates/Interfaces/ITrashUnderlaySpecies.cs
Kurt c10c2a0dc2
Add Trash Byte verification for Switch formats (#4283)
* Extract logic, finish impl for switch era
* Extract trash checks to static class
* Reduce some allocations in OT name compares
2024-05-27 18:21:11 -05:00

7 lines
107 B
C#

namespace PKHeX.Core;
public interface ITrashUnderlaySpecies
{
bool IsTrashUnderlaySpecies(PKM pk);
}