PKHeX/PKHeX.Core/PKM/Interfaces/IAlpha.cs
2022-03-06 12:06:50 -08:00

9 lines
193 B
C#

namespace PKHeX.Core;
/// <summary>
/// Interface that exposes an indication if the Pokémon is an alpha Pokémon.
/// </summary>
public interface IAlpha
{
bool IsAlpha { get; set; }
}