2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-02-20 07:18:34 +00:00
PKHeX/PKHeX.Core/PKM/HOME/IGameDataSplitAbility.cs
2023-07-09 14:10:40 -07:00

17 lines
435 B
C#

namespace PKHeX.Core;
/// <summary>
/// Holds the ability and ability number for a <see cref="PKM"/> that has side-game specific data.
/// </summary>
public interface IGameDataSplitAbility
{
/// <summary>
/// Ability ID for the <see cref="PKM"/>.
/// </summary>
ushort Ability { get; set; }
/// <summary>
/// Ability number for the <see cref="PKM"/>.
/// </summary>
byte AbilityNumber { get; set; }
}