PKHeX/PKHeX.Core/Legality/Structures/IFixedAbilityNumber.cs
Kurt 2575d73144 Add IFixedAbilityNumber, hide vivillon region flags
tfw can't using static a private class in the file, gotta be explicit.
2021-09-06 18:11:32 -07:00

7 lines
110 B
C#

namespace PKHeX.Core
{
public interface IFixedAbilityNumber
{
int Ability { get; }
}
}