mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
12 lines
323 B
C#
12 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; }
|
|
}
|