namespace PKHeX.Core;
///
/// Exposes details about an encounter with a specific ability index permitted.
///
public interface IFixedAbilityNumber
{
///
/// Specific ability index(es) that can be acquired from this object.
///
AbilityPermission Ability { get; }
}