mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-21 13:26:42 -05:00
13 lines
323 B
C#
13 lines
323 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Exposes details about an encounter with a specific ability index permitted.
|
|
/// </summary>
|
|
public interface IFixedAbilityNumber
|
|
{
|
|
/// <summary>
|
|
/// Specific ability index(es) that can be acquired from this object.
|
|
/// </summary>
|
|
AbilityPermission Ability { get; }
|
|
}
|