PKHeX/PKHeX.Core/PKM/Shared/IAlpha.cs

10 lines
193 B
C#
Raw Normal View History

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; }
}