PKHeX/PKHeX.Core/PKM/Interfaces/IAlpha.cs

10 lines
211 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 : IAlphaReadOnly
{
new bool IsAlpha { get; set; }
}